VoiceKey Lab

From TSG Doc
Revision as of 16:11, 18 November 2015 by E.vandenberge (talk | contribs)
Jump to navigation Jump to search
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.
Image: 1200 pixels

Interface BITSIbox

For the settings of the interface and BITSI documentation go to: http://tsgdoc.socsci.ru.nl/index.php?title=ButtonBoxes

Soundkey

Settings to record the sound in presentation:

Image: 1200 pixels

Example code using soundKey from the buttonbox in Presentation:

output_port oport = output_port_manager.get_port( 1 );

#callibrate the voicekey
oport.send_string("CV");
#Detect the voicekey once! When you want to do another trigger of voicekey send another "DV"
oport.send_string("DV");

#recieve the "V", in this case enter the "V" in your response manager 
loop
  count_old = response_manager.total_response_count()
until
  response_manager.total_response_count() > count_old
begin
end;
voiceKeyTime = clock.time();

Settings for the sound trigger in presentation:

Image: 1200 pixels