SoundEdit 16 v2 -- help - documentation?
SoundEdit 16 v2 -- help - documentation?
- Subject: SoundEdit 16 v2 -- help - documentation?
- From: email@hidden
- Date: Thu, 17 Jul 2003 13:58:13 -0700
I'm trying to convert the format from some sound files from varying sampling
rates to 22.050
kHz, CD quality. It should be a straightforward task, except for there is
abosultely no
documentation. It's a scriptable application, but the biggest help for me is
the dictionary
provided by script editor.
Below is my code, I commented out my failed attempts because they just cause an
error. All this
appScpt does is open a file in soundEdit.
set theSamplingRate to 20.05 as real
try
tell application "Finder"
choose file
set fl2convert to the result as alias
end tell
log fl2convert
on error
display dialog "Please choose a file that can be supported by Sound Edit"
end try
try
tell application "SoundEdit16 version 2"
--get the file type of the fl2convert
open fl2convert
--convert format of fl2convert to sampling rate theSamplingRate
--log theSamplingRate
--set the result to the file type of the fl2convert
--if theType is "AIFF" then convert format of the fl2convert to sampling rate
the
theSamplingRate
end tell
on error -29298
display dialog "An error occurred trying to open the application"
end try
Anyone have soundEdit, or tried to do anything with it. Or know where there is
any real
documentation for its applescript. (Macromedia's website has nothing.)
Thanks,
Brandon
_______________________________________________
applescript-users mailing list | email@hidden
Help/Unsubscribe/Archives:
http://www.lists.apple.com/mailman/listinfo/applescript-users
Do not post admin requests to the list. They will be ignored.