﻿<?xml version="1.0" encoding="UTF-8"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/"><channel><title>Millisecond Forums » Millisecond Forums » Inquisit 3  » Voicerecord issue</title><generator>InstantForum 2017-1 Final</generator><description>Millisecond Forums</description><link>https://forums.millisecond.com/</link><webMaster>Millisecond Forums</webMaster><lastBuildDate>Wed, 20 May 2026 01:00:42 GMT</lastBuildDate><ttl>20</ttl><item><title>Voicerecord issue</title><link>https://forums.millisecond.com/Topic13487.aspx</link><description>Hello all,&lt;div&gt;&lt;br/&gt;&lt;/div&gt;I was wondering if someone could help me with the script for an experiment I am currently working on. I've been messing around with it for a while now, but I just can't seem to get it to work properly. &lt;div&gt;&lt;br/&gt;&lt;/div&gt;&lt;div&gt;The idea is to present a picture for 10 seconds and record all responses participants have (to be spoken into the microphone) during this time period (i.e., a think-aloud task).&amp;nbsp;&lt;div&gt;&lt;br/&gt;&lt;/div&gt;&lt;div&gt;The problem is that I cant get my script to keep recording for the whole 10 seconds, (In other words: how do I get it to just record all spoken answers without stopping the presentation of the picture/and or stop the recording?).&lt;div&gt;&lt;div&gt;&lt;br/&gt;&lt;/div&gt;This is the basis so far: &lt;br/&gt;&lt;/div&gt;&lt;div&gt;&lt;br/&gt;&lt;/div&gt;&lt;div&gt;&amp;lt;expt 1&amp;gt;&lt;br/&gt;/blocks = [1=test_control]&lt;br/&gt;&amp;lt;/expt&amp;gt;&lt;br/&gt;&lt;br/&gt;&amp;lt;page pre&amp;gt;&lt;br/&gt;^^start&lt;br/&gt;&amp;lt;/page&amp;gt;&lt;br/&gt;&lt;br/&gt;&amp;lt;page post&amp;gt;&lt;br/&gt;^^exit&lt;br/&gt;&amp;lt;/page&amp;gt;&lt;br/&gt;&lt;br/&gt;&amp;lt;block test_control&amp;gt;&lt;br/&gt;/ trials = [1= test_control]&lt;br/&gt;/preinstructions = (pre)&lt;br/&gt;/ postinstructions = (post)&lt;br/&gt;&amp;lt;/block&amp;gt;&lt;br/&gt;&lt;br/&gt;&amp;lt;trial test_control&amp;gt;&lt;br/&gt;/ stimulustimes = [0 = control]&lt;br/&gt;/ timeout = 10000&lt;br/&gt;/ inputdevice = voicerecord&lt;br/&gt;&lt;div&gt;&amp;lt;expt 1&amp;gt;&lt;br/&gt;/blocks = [1=test_control]&lt;br/&gt;&amp;lt;/expt&amp;gt;&lt;br/&gt;&lt;br/&gt;&amp;lt;page pre&amp;gt;&lt;br/&gt;^^start&lt;br/&gt;&amp;lt;/page&amp;gt;&lt;br/&gt;&lt;br/&gt;&amp;lt;page post&amp;gt;&lt;br/&gt;^^exit&lt;br/&gt;&amp;lt;/page&amp;gt;&lt;br/&gt;&lt;br/&gt;&amp;lt;block test_control&amp;gt;&lt;br/&gt;/ trials = [1= test_control]&lt;br/&gt;/preinstructions = (pre)&lt;br/&gt;/ postinstructions = (post)&lt;br/&gt;&amp;lt;/block&amp;gt;&lt;br/&gt;&lt;br/&gt;&amp;lt;trial test_control&amp;gt;&lt;br/&gt;/ stimulustimes = [0 = control]&lt;br/&gt;/ timeout = 10000&lt;br/&gt;/ inputdevice = voicerecord&lt;br/&gt;&amp;lt;/trial&amp;gt;&lt;br/&gt;&lt;br/&gt;&amp;lt;picture control&amp;gt;&lt;br/&gt;/ items = ("control.jpg")&lt;br/&gt;/ position = (50, 50)&lt;br/&gt;&amp;lt;/picture&amp;gt;&lt;br/&gt;&lt;br/&gt;&lt;br/&gt;&lt;/div&gt;&amp;lt;/trial&amp;gt;&lt;br/&gt;&lt;br/&gt;&amp;lt;picture control&amp;gt;&lt;br/&gt;/ items = ("control.jpg")&lt;br/&gt;/ position = (50, 50)&lt;br/&gt;&amp;lt;/picture&amp;gt;&lt;br/&gt;&lt;div&gt;&lt;br/&gt;&lt;/div&gt;I've tried several things so far, but I just cant make sense of what to add to it to solve my problem.&lt;div&gt;&lt;br/&gt;&lt;/div&gt; I hope there is someone here who could help me:)&lt;div&gt;&lt;br/&gt;&lt;/div&gt;Kind regards,&lt;div&gt;&lt;br/&gt;&lt;/div&gt;Jeroen&lt;br/&gt;&lt;/div&gt;&lt;/div&gt; &lt;/div&gt;</description><pubDate>Fri, 06 Jun 2014 09:48:14 GMT</pubDate><dc:creator>Jeroen Loman</dc:creator></item><item><title>RE: Voicerecord issue</title><link>https://forums.millisecond.com/Topic13490.aspx</link><description>Let me first note that voicerecord performance may vary considerably between systems -- I've seen it perform exceedingly well on some and not-so-well on others for no apparent reason (presumably due to cheap components and/or driver issues).&lt;div&gt;&lt;br/&gt;&lt;/div&gt;#1: Note that /timeout specifies *maximum* trial duration, i.e., by default a trial will terminate *earlier* (as soon as a response has been detected). To enforce a *fixed* duration, use /trialduration. For details re. the various components involved in trial timings, see the "&lt;span class="header1"&gt;How to Control Trial Duration and Inter-Trial Intervals" topic in the documentation.&lt;div&gt;&lt;br/&gt;&lt;/div&gt;#2: Another thing to consider is /responseinterrupt. The default is 'immediate', which probably isn't what you'd want here.&lt;div&gt;&lt;br/&gt;&lt;/div&gt;To sum up, I would try something along the lines of&lt;div&gt;&lt;br/&gt;&lt;/div&gt;&lt;/span&gt;&lt;br/&gt;&amp;lt;trial test_control&amp;gt;&lt;div&gt;&lt;div&gt;/ stimulustimes = [0 = control; 10000 = control]&lt;/div&gt;&lt;div&gt;/ inputdevice = voicerecord&lt;/div&gt;/ pretrialpause = 500&lt;div&gt;/ posttrialpause = 500&lt;br/&gt;&lt;/div&gt;&lt;/div&gt;/ trialduration = 11000&lt;br/&gt;/ responsetime = 0&lt;div&gt;/ responseinterrupt = frames&lt;br/&gt;&lt;/div&gt;&amp;lt;/trial&amp;gt;</description><pubDate>Fri, 06 Jun 2014 09:48:14 GMT</pubDate><dc:creator>Dave</dc:creator></item><item><title>RE: Voicerecord issue</title><link>https://forums.millisecond.com/Topic13489.aspx</link><description>For clarity, here it is once:&lt;div&gt;&lt;br/&gt;&lt;/div&gt;&lt;div&gt;&amp;lt;expt 1&amp;gt;&lt;br/&gt;/blocks = [1=test_control]&lt;br/&gt;&amp;lt;/expt&amp;gt;&lt;br/&gt;&lt;br/&gt;&amp;lt;page pre&amp;gt;&lt;br/&gt;^^start&lt;br/&gt;&amp;lt;/page&amp;gt;&lt;br/&gt;&lt;br/&gt;&amp;lt;page post&amp;gt;&lt;br/&gt;^^exit&lt;br/&gt;&amp;lt;/page&amp;gt;&lt;br/&gt;&lt;br/&gt;&amp;lt;block test_control&amp;gt;&lt;br/&gt;/ trials = [1= test_control]&lt;br/&gt;/preinstructions = (pre)&lt;br/&gt;/postinstructions = (post)&lt;br/&gt;&amp;lt;/block&amp;gt;&lt;br/&gt;&lt;br/&gt;&amp;lt;trial test_control&amp;gt;&lt;br/&gt;/ stimulustimes = [0 = control]&lt;br/&gt;/ timeout = 10000&lt;br/&gt;/ inputdevice = voicerecord&lt;br/&gt;&amp;lt;/trial&amp;gt;&lt;br/&gt;&lt;br/&gt;&amp;lt;picture control&amp;gt;&lt;br/&gt;/ items = ("control.jpg")&lt;br/&gt;/ position = (50, 50)&lt;br/&gt;&amp;lt;/picture&amp;gt;&lt;/div&gt;</description><pubDate>Fri, 06 Jun 2014 08:51:51 GMT</pubDate><dc:creator>Jeroen Loman</dc:creator></item><item><title>RE: Voicerecord issue</title><link>https://forums.millisecond.com/Topic13488.aspx</link><description>(sorry, I pasted the same script twice by mistake ^^ &lt;br/&gt;</description><pubDate>Fri, 06 Jun 2014 08:49:55 GMT</pubDate><dc:creator>Jeroen Loman</dc:creator></item></channel></rss>