Add tasks for all the new languages
This commit is contained in:
parent
9dc3c2bb62
commit
bba7bfd280
13208 changed files with 134745 additions and 0 deletions
13
Task/Record-sound/LiveCode/record-sound.livecode
Normal file
13
Task/Record-sound/LiveCode/record-sound.livecode
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
command makeRecording
|
||||
set the dontUseQT to false -- on windows use true
|
||||
set the recordFormat to "wave" -- can be wav,aiff, au
|
||||
set the recordRate to 44.1 -- sample at 44100 Hz
|
||||
set the recordSampleSize to 16 --default is 8 bit
|
||||
ask file "Save recording as"
|
||||
if it is not empty then
|
||||
answer record --show sound input dialog with presets above
|
||||
record sound file it -- actual record command
|
||||
wait 10 seconds
|
||||
stop recording
|
||||
end if
|
||||
end makeRecording
|
||||
Loading…
Add table
Add a link
Reference in a new issue