Initial data commit
This commit is contained in:
parent
72d218235f
commit
f23f22d71c
199087 changed files with 3378941 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