Image audio simultaneous display? #1570
-
Is there a way to display image and audio simultaneously? also, I'm running this in cognition.run, it isn't running but displays no errors. any ideas? var timeline = [movie_trial] jsPsych.init({ |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
About presenting the image and audio stimuli simultaneously, the psychophysics plugin might be helpful. |
Beta Was this translation helpful? Give feedback.
-
Hi @rbruno1, do you have your own custom plugin called "movie-keyboard-response", or do you want to use jsPsych's "video-keyboard-response" plugin? If it's the latter, you should change the plugin name in your var movie_trial = {
type: 'video-keyboard-response',
stimulus: ['Banjo2Bandage1.mp4'],
choices: ['f', 'j'],
}
var timeline = [movie_trial]
jsPsych.init({
timeline: timeline
}) |
Beta Was this translation helpful? Give feedback.
Hi @rbruno1, do you have your own custom plugin called "movie-keyboard-response", or do you want to use jsPsych's "video-keyboard-response" plugin? If it's the latter, you should change the plugin name in your
movie_trial
object, and use square brackets around the movie file name, because thestimulus
parameter should be an array.