/** * jspsych-video-button-response * Josh de Leeuw * * plugin for playing a video file and getting a button response * * documentation: docs.jspsych.org * **/ jsPsych.plugins["video-button-response"] = (function() { var plugin = {}; jsPsych.pluginAPI.registerPreload('video-button-response', 'stimulus', 'video'); plugin.info = { name: 'video-button-response', description: '', parameters: { sources: { type: jsPsych.plugins.parameterType.VIDEO, pretty_name: 'Video', default: undefined, description: 'The video file to play.' }, choices: { type: jsPsych.plugins.parameterType.STRING, pretty_name: 'Choices', default: undefined, array: true, description: 'The labels for the buttons.' }, button_html: { type: jsPsych.plugins.parameterType.STRING, pretty_name: 'Button HTML', default: '', array: true, description: 'The html of the button. Can create own style.' }, prompt: { type: jsPsych.plugins.parameterType.STRING, pretty_name: 'Prompt', default: null, description: 'Any content here will be displayed below the buttons.' }, width: { type: jsPsych.plugins.parameterType.INT, pretty_name: 'Width', default: '', description: 'The width of the video in pixels.' }, height: { type: jsPsych.plugins.parameterType.INT, pretty_name: 'Height', default: '', description: 'The height of the video display in pixels.' }, autoplay: { type: jsPsych.plugins.parameterType.BOOL, pretty_name: 'Autoplay', default: true, description: 'If true, the video will begin playing as soon as it has loaded.' }, controls: { type: jsPsych.plugins.parameterType.BOOL, pretty_name: 'Controls', default: false, description: 'If true, the subject will be able to pause the video or move the playback to any point in the video.' }, start: { type: jsPsych.plugins.parameterType.FLOAT, pretty_name: 'Start', default: null, description: 'Time to start the clip.' }, stop: { type: jsPsych.plugins.parameterType.FLOAT, pretty_name: 'Stop', default: null, description: 'Time to stop the clip.' }, rate: { type: jsPsych.plugins.parameterType.FLOAT, pretty_name: 'Rate', default: 1, description: 'The playback rate of the video. 1 is normal, <1 is slower, >1 is faster.' }, trial_ends_after_video: { type: jsPsych.plugins.parameterType.BOOL, pretty_name: 'End trial after video finishes', default: false, description: 'If true, the trial will end immediately after the video finishes playing.' }, trial_duration: { type: jsPsych.plugins.parameterType.INT, pretty_name: 'Trial duration', default: null, description: 'How long to show trial before it ends.' }, margin_vertical: { type: jsPsych.plugins.parameterType.STRING, pretty_name: 'Margin vertical', default: '0px', description: 'The vertical margin of the button.' }, margin_horizontal: { type: jsPsych.plugins.parameterType.STRING, pretty_name: 'Margin horizontal', default: '8px', description: 'The horizontal margin of the button.' }, response_ends_trial: { type: jsPsych.plugins.parameterType.BOOL, pretty_name: 'Response ends trial', default: true, description: 'If true, the trial will end when subject makes a response.' }, response_allowed_while_playing: { type: jsPsych.plugins.parameterType.BOOL, pretty_name: 'Response allowed while playing', default: true, description: 'If true, then responses are allowed while the video is playing. '+ 'If false, then the video must finish playing before a response is accepted.' } } } plugin.trial = function(display_element, trial) { // setup stimulus var video_html = '