Go Back   The macosxhints Forums > OS X Help Requests > Applications



Reply
 
Thread Tools Rate Thread Display Modes
Old 07-03-2003, 10:42 AM   #1
webgodjj
Triple-A Player
 
Join Date: Dec 2002
Location: madison, wi USA
Posts: 85
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?
webgodjj is offline   Reply With Quote
Old 07-03-2003, 12:58 PM   #2
hayne
Moderator
 
Join Date: Jan 2002
Location: Montreal
Posts: 29,279
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.
hayne is online now   Reply With Quote
Old 07-04-2003, 01:29 PM   #3
Lankhmart
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
Lankhmart is offline   Reply With Quote
Old 03-07-2007, 01:30 AM   #4
edalzell
MVP
 
Join Date: Nov 2002
Location: Vancouver
Posts: 1,188
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.
edalzell is offline   Reply With Quote
Old 05-26-2009, 09:33 AM   #5
cpandar
Registered User
 
Join Date: May 2009
Posts: 1
Wanted to reply as well because this method helped me too! Thanks.
cpandar is offline   Reply With Quote
Reply

Thread Tools
Display Modes Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT -5. The time now is 04:13 AM.


Powered by vBulletin® Version 3.8.4
Copyright ©2000 - 2009, Jelsoft Enterprises Ltd.
Site design © Mac Publishing LLC; individuals retain copyright of their postings
but consent to the possible use of their material in other areas of Mac Publishing LLC.