Hi,
Adding audio components online and playing them dramatically has not been an easy task in my experiment. Thanks to @wakecarter’s post here, I’ve made small progress.
Like what’s been described in the post, I added multiple audio components in an earlier routine, force end that routine so not to play audios until I need them to be played. And then I use .play() when I actually play them.
The issue I currently have is that the window would flip and display the default background while the audio is being played, and it would flip back to what’s actually supposed to be on the screen afterwards. The way I want it to be is that the visual stimulus remains on the screen while the audio is being played.
I made it work in PsychoPy is via the snippets below:
mySound.play()
while mySound.status == STARTED:
win.flip(clearBuffer=False)
The “clearBuffer=False” would keep the contents on the screen while audio is played.
However, I wasn’t able to find an alternative of clearBuffer=False in JS, and I know that win.flip() is not recommended. I get stuck here.
I appreciate any idea on how to achieve this.
Cheers,