Skip to main content Link Menu Expand (external link) Document Search Copy Copied

(PennController.)InitiateRecorder

description

Use this to specify the URL of the PHP file to upload the audio recordings collected during the experiment.

syntax

(PennController.)InitiateRecorder(url)

What does (PennController.) mean?

  • url :

alternate(s)

  • (PennController.)InitiateRecorder( url , message )

notes

  • InitiateRecorder creates a PennController trial asking for the participant’s consent to record audio samples. You can specify a message to replace the default one. Use the label command on it to determine when it should appear in your sequence of trials.

example(s)


@
@Sequence("first_trial", "second-trial")
@
$InitiateRecorder(
$    "https://myserver/uploadVoices/saveRecordings.php"
$    ,
$    "This experiment collects audio recordings. **Once you grant it access to your recording device, you will be notified of whether you are being recorded by a label at the top of the page**"
$)
$.label("first-trial")
@
@newTrial( "second-trial" ,
@    newMediaRecorder("recorder", "audio")
@        .print()
@        .wait()
@)
  • Adds a page asking for the participant’s authorization to use their recording device, using a custom text message.