Size: 134
Comment:
|
Size: 2696
Comment:
|
Deletions are marked like this. | Additions are marked like this. |
Line 7: | Line 7: |
== Relevant Papers == [[attachment:MasonSuri11_MTurk.pdf|Conducting behavioral research on Amazon’s Mechanical Turk by Winter Mason & Siddharth Suri]] should be a standard reading for anyone conducting mturk experiments in the lab. == Example MTurk Experiments == * [[http://www.hlp.rochester.edu/mturk/WOACQ.1/example.html|Artificial Language Learning]] * [[http://www.hlp.rochester.edu/mturk/examples/semregcompl1_example.html|Written recall]] * [[http://www.hlp.rochester.edu/mturk/mtadapt/expt_demo.html|Phonetic perception/adaptation]] * [[http://www.hlp.rochester.edu/mturk/examples/norming_example.html|Norming]] * [[http://www.hlp.rochester.edu/mturk/examples/emoprm1_example.html|Syntactic priming]] * [[http://spellout.net/ibexexps/hlplab/rc.spr4-evelin12/experiment.html|Self paced reading]] (run with modified [[http://code.google.com/p/webspr/|IBex]]) * an example of spoken recording as soon as we have it == Tips == === Audio === If you intend to play audio, keep in mind that not all browsers support the same formats within the <audio> tag. Make sure to provide multiple <source> tags within your <audio> block, in the order you'd prefer the browser choose them, e.g. {{{#!highlight html numbers=disable <audio> <source src="foo.m4a" type="audio/mp4" /> <source src="foo.ogg" type="audio/ogg" /> <source src="foo.mp3" type="audio/mpeg" /> <source src="foo.wav" type="audio/wav" /> Your browser does not support the audio element. </audio> }}} Use as many or few as you need to get full coverage, or at least coverage for all the browsers you care about. Here is a table of current levels of support in the major browsers: || ||'''m4a''' ||'''mp3''' ||'''ogg''' ||'''wav''' || ||'''IE9''' ||<#FF0000>no ||<#00FF00>yes||<#FF0000>no ||<#FF0000>no || ||'''Opera 11''' ||<#FF0000>no ||<#FF0000>no ||<#00FF00>yes||<#00FF00>yes|| ||'''Firefox 13'''||<#FF0000>no ||<#FF0000>no ||<#00FF00>yes||<#00FF00>yes|| ||'''Chrome 20''' ||<#00FF00>yes||<#00FF00>yes||<#00FF00>yes||<#00FF00>yes|| ||'''Safari 5.1'''||<#00FF00>yes||<#00FF00>yes||<#FF0000>no ||<#00FF00>yes|| To convert a wav to mp3: {{{#!highlight bash numbers=disable lame --resample 22.05 -b 64 foo.wav foo.mp3 }}} To convert a wav to m4a: {{{#!highlight bash numbers=disable ffmpeg -y -i foo.wav -acodec libfaac -ab 64k foo.m4a }}} To convert a wav to ogg: {{{#!highlight bash numbers=disable ffmpeg -i foo.wav -acodec libvorbis -ab 64k foo.ogg }}} ---- <<AttachInfo>> |
Amazon Mechanical Turk
Relevant Papers
Conducting behavioral research on Amazon’s Mechanical Turk by Winter Mason & Siddharth Suri should be a standard reading for anyone conducting mturk experiments in the lab.
Example MTurk Experiments
Self paced reading (run with modified IBex)
- an example of spoken recording as soon as we have it
Tips
Audio
If you intend to play audio, keep in mind that not all browsers support the same formats within the <audio> tag. Make sure to provide multiple <source> tags within your <audio> block, in the order you'd prefer the browser choose them, e.g.
<audio>
<source src="foo.m4a" type="audio/mp4" />
<source src="foo.ogg" type="audio/ogg" />
<source src="foo.mp3" type="audio/mpeg" />
<source src="foo.wav" type="audio/wav" />
Your browser does not support the audio element.
</audio>
Use as many or few as you need to get full coverage, or at least coverage for all the browsers you care about.
Here is a table of current levels of support in the major browsers:
|
m4a |
mp3 |
ogg |
wav |
IE9 |
no |
yes |
no |
no |
Opera 11 |
no |
no |
yes |
yes |
Firefox 13 |
no |
no |
yes |
yes |
Chrome 20 |
yes |
yes |
yes |
yes |
Safari 5.1 |
yes |
yes |
no |
yes |
To convert a wav to mp3:
lame --resample 22.05 -b 64 foo.wav foo.mp3
To convert a wav to m4a:
ffmpeg -y -i foo.wav -acodec libfaac -ab 64k foo.m4a
To convert a wav to ogg:
ffmpeg -i foo.wav -acodec libvorbis -ab 64k foo.ogg
There are 1 attachment(s) stored for this page.