Re: Applescript to export Quicktime movies
Re: Applescript to export Quicktime movies
- Subject: Re: Applescript to export Quicktime movies
- From: "Ian Mantripp" <email@hidden>
- Date: Fri, 29 Nov 2002 09:27:44 +0100
The Other Rob wrote:
>
I'm looking for a way to export Quicktime movies with specific settings
>
using Applescript. I realise that you can export movies using the default
>
export setting presets within Quicktime, but none of these presets meet my
>
requirements. Are there any other options for exporting with custom
>
settings?
You can use the optional "using settings" parameter of the export
command, settings being a file with some export settings. You can export
settings with "save export settings".
here is a quick (and dirty) example :
tell application "Finder"
set outputFile to (make file at desktop with properties
{name:"my_settings.qtes"}) as alias
end tell
tell application "QuickTime Player"
tell movie 1
save export settings for QuickTime movie to outputFile with replacing
end tell
end tell
It's all in the QTplayer dictionary, check it out.
Ian
_______________________________________________
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.