Re: Scripting QT to change size of a movie
Re: Scripting QT to change size of a movie
- Subject: Re: Scripting QT to change size of a movie
- From: Brennan Young <email@hidden>
- Date: Wed, 28 Mar 2001 11:09:44 +0100
- Organization: Magic Lantern
Mark Weikert <email@hidden> wrote
>
yes, sorry. The Quicktime Player.
>
>
Now is this going to be fairly easy to script?
The Quicktime Player is VERY easy to script. They did a good job with
the aete. The QT5 player is an order of magnitude more scriptable, so
you might want to go with that instead.
This should get you started:
on open droppedMovies
tell application "QuickTime Player" to activate
repeat with thisMovie in droppedMovies
tell application "QuickTime Player"
open thisMovie
tell movie 1
set dimensions to {320, 240}
close with saving
end tell
end tell
end repeat
end open
Save as an applet, then drop your movies on it in the Finder.
--
_____________
Brennan