|
|
#1 |
|
Triple-A Player
Join Date: Dec 2002
Location: madison, wi USA
Posts: 87
|
rotate video
I was given a movie from a client to put on his website. It was taken from a digital camera. The movie is actually pretty good quality, however it is rotated on it's side. I looked around in imovie and I don't think I can rotate the whole movie around? Any recommendations?
|
|
|
|
|
|
#2 |
|
Site Admin
Join Date: Jan 2002
Location: Montreal
Posts: 32,473
|
QT Pro
You can rotate a movie using QuickTime Player Pro ($30 from Apple). You do this via "Get Movie Properties", then choose "Video Track" and then "Size".
Of course you can also do it with Final Cut Express. |
|
|
|
|
|
#3 |
|
Triple-A Player
Join Date: May 2003
Posts: 150
|
You can also perform the rotation through AppleScript even with the free version of QuickTime Player. Just run the following script and select the movie that you want to rotate:
Code:
set originalMovie to choose file with prompt "Select a movie to rotate:" display dialog "Rotate clockwise or counter-clockwise?" buttons {"Clockwise", "Counter-Clockwise"} set turnChoice to button returned of the result set saveRef to choose file name with prompt "Save a new copy of the movie here:" tell application "QuickTime Player" activate open originalMovie tell movie 1 if turnChoice = "Clockwise" then rotate right (the first track whose kind is "video") else rotate left (the first track whose kind is "video") end if save in saveRef as self contained end tell end tell |
|
|
|
|
|
#4 |
|
MVP
Join Date: Nov 2002
Location: Vancouver
Posts: 1,390
|
Sorry to resurrect a very old thread, but this method is the best one out there. All the other plugins are either not free or PPC only.
|
|
|
|
|
|
#5 |
|
Prospect
Join Date: May 2009
Posts: 2
|
Wanted to reply as well because this method helped me too! Thanks.
|
|
|
|
|
|
#6 |
|
Guest
Posts: n/a
|
Wonder if this still works
I get a compile error when I try to use the script. Does anybody know if the rotate commands stopped working in scripting in snow leopard?
|
|
|
|
#7 | |||||||||||||||||||||||
|
Triple-A Player
Join Date: Jan 2007
Location: Warrington, UK
Posts: 177
|
iMovie9/11 rotate movies. Have you not got them?
__________________
PPC Mini, 10.4.11; Intel Mini, 10.6.6 White MacBook 10.6.6 |
|||||||||||||||||||||||
|
|
|
|
|
#8 |
|
Guest
Posts: n/a
|
This is still available under OS X 10.6, but you need to install QuickTime 7, which is available for download here:
http://support.apple.com/kb/dl923 After that is installed (it installs to your Utilities folder), just modify the script to tell application "QuickTime Player 7" and it works (and far faster than dealing with iMovie). |
|
![]() |
|
|