Re: Export QuickTime Movie's frames as sequence of images
Re: Export QuickTime Movie's frames as sequence of images
- Subject: Re: Export QuickTime Movie's frames as sequence of images
- From: Brennan <email@hidden>
- Date: Sat, 30 Aug 2003 20:07:41 +0200
On Thu, 28 Aug 2003 17:16:21 -0300, Marcus Rodrigues
<email@hidden> wrote:
>
Does anyone have a script to export a quicktime movie as a series of
>
images? Or have something for me to start with? I never scripted a line
>
for QT, so I'm lost....
Hi Marcus,
QuickTime Player has this feature built in. Use file->export and choose
'movie to image sequence' from the popup.
... but if you want to do this to a lot of movies, scripting would help.
The basics are
tell application "QuickTime Player"
tell movie 1
export to file file "Macintosh HD:folder:file" as image sequence
end tell
end tell
This will use the most recent settings, and if that means PNG, you'll end
up with files called 'file 01.png', 'file 02.png' etc.
Good luck!
Brennan
_______________________________________________
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.