jana

Forum Replies Created

Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • in reply to: MediaRecorder #7473
    jana
    Participant

    AH!! Works perfectly – thank you so much Jeremy!!
    Jana

    in reply to: MediaRecorder #7470
    jana
    Participant

    Great – thank you Jeremy! I found it in the documents page and will test it out.

    Just to report a weird thing happening with the recording’s titles.

    We are running an elicited production task with model sentence and prompt appearing on consecutive screen both being recorded individually. What’s happening is that the recording of the prompt is saved under the model sentence example and vice versa.
    I’m copying the relevant part of the code below to check if I made and error that might be causing it. Many thanks!!!

    Template( "experiment.csv" , row =>
      newTrial( "stimuli" ,
         // Start recording
        newMediaRecorder(row.model+"-words", "audio").log().record()
        ,
        newText("instructions", "<strong>"+row.model+"</strong>")
            .center()
            .print()
           
        ,
        newButton("Done").center().print().wait().remove(),
         getText("instructions").remove()
       
    ,     newMediaRecorder(row.prompt+"-words", "audio").log().record()
        ,
         newText("instructions", "<strong>"+row.prompt+"</strong>")
            .center()
            .print()
        ,
        newButton("Done").center().print().wait().remove()
        
    
      )
      // Report which letter this trial is about in the results file
      .log("model", row.model)
      .log("prompt", row.prompt)
      .log("cond", row.cond)
      .log("item", row.item)
    )
    in reply to: MediaRecorder #7456
    jana
    Participant

    Hi Jermeny,

    Thanks again for the advice above, it works great!

    Another question…

    Is it possible to save the recording to two locations – a secure server and to a local PC (as per OralProduction (Media recorder) example), just to be sure if one option fails we don’t lose the recordings.

    Many thanks!
    Jana

Viewing 3 posts - 1 through 3 (of 3 total)