I have a weekly conference call that I record using Skype and WireTap Studio. I would like to automate this process using Applescript so I do not need to babysit the recording process.
- Launch Skype
- Launch WireTap Studio
- Make Call
- Record Call (Audio Input Source = Skype)
- Call Length is 30 minutes
- Hang Up Call
- End Recording
- Save Recording to iTunes/Playlist “Conference Calls”
- Quit Skype
- Quit WireTap Studio
Any Ideas?
Model: MacBook Pro
AppleScript: 2.3
Browser: Firefox 3.5.6
Operating System: Mac OS X (10.6)
Seems fairly easy. I can’t do it all for you, you’ll have to look up the commands for doing each of the functions and their options, but it’s like this:
tell app "skype" to launch
tell app "wiretap studio" to launch
delay 5
tell app "skype"
--have to look up the commands for this part
make call with number "1-888-555-1212" with options someoptions
end tell
tell app "wts"
record using input source application "skype"
delay 1800
end recording 1
set myCallName to "titleofcall"
save document 1 as "macintosh HD:Users:your.name:DesktopOrWherever:" & myCallName & ".aiff" as aiff format
quit
end tell
tell app "skype"
stop call 1
quit
end tell
--then some stuff to import the file into iTunes
HTH,
Chris