« Oracle: plan of the running query | Home | Oracle: usage of the tablespaces (permanent and temporary) »
AppleScript: rotate mov file in QuickTime Pro
Some kind of life hack: it's very easy to make mov file with digital camera, rotating it 90 degrees. However, it's not so easy to convert the result file to the 'visible' form.
QuickTime Pro could do this, and I found the AppleScript script, which could make it even more easy.
tell application "QuickTime Player"
set m to (get movie 1)
rotate m by -90
save self contained m in (choose file name with prompt "save self contained movie")
end tell
set m to (get movie 1)
rotate m by -90
save self contained m in (choose file name with prompt "save self contained movie")
end tell
The script is mentioned here
Topics: AppleScript, video | Submitter: checkthis
One Response to “AppleScript: rotate mov file in QuickTime Pro”
Comments
You must be logged in to post a comment.
June 2nd, 2008 at 6:48 am
[...] camera, rotating it 90 degrees. However, it&39s not so easy to convert the result file to ...http://code.techinterviews.com/applescript-rotate-mov-file-in-quicktime-pro/113AppleScript Code.TechInterviews.comAppleScript: rotate mov file in QuickTime Pro Friday, March 28th, [...]