I have been trying to figure out how to rotate videos with FFmpeg for some time now. I am working with iPhone videos taken in portrait mode. I know how to determine the current degrees of rotation using MediaInfo (excellent library, btw) but I'm stuck on FFmpeg now.

From what I've read, what you need to use is a vfilter option. According to what I see, it should look like this:

ffmpeg -vfilters "rotate=90" -i input.mp4 output.mp4

However, I can't get this to work. First, -vfilters doesn't exist anymore, it's now just -vf. Second, I get this error:

No such filter: 'rotate'
Error opening filters!

As far as I know, I have an all-options-on build of FFmpeg. Running ffmpeg -filters shows this:

Filters:
anull            Pass the source unchanged to the output.
aspect           Set the frame aspect ratio.
crop             Crop the input video to x:y:width:height.
fifo             Buffer input images and send them when they are requested.
format           Convert the input video to one of the specified pixel formats.
hflip            Horizontally flip the input video.
noformat         Force libavfilter not to use any of the specified pixel formats
 for the input to the next filter.
null             Pass the source unchanged to the output.
pad              Pad input image to width:height[:x:y[:color]] (default x and y:
 0, default color: black).
pixdesctest      Test pixel format definitions.
pixelaspect      Set the pixel aspect ratio.
scale            Scale the input video to width:height size and/or convert the i
mage format.
slicify          Pass the images of input video on to next video filter as multi
ple slices.
unsharp          Sharpen or blur the input video.
vflip            Flip the input video vertically.
buffer           Buffer video frames, and make them accessible to the filterchai
n.
color            Provide an uniformly colored input, syntax is: [color[:size[:ra
te]]]
nullsrc          Null video source, never return images.
nullsink         Do absolutely nothing with the input video.

Having the options for vflip and hflip are great and all, but they just won't get me where I need to go. I need to the ability to rotate videos 90 degrees at the very least. 270 degrees would be an excellent option to have as well. Where have the rotate options gone?

Thanks.

link|improve this question

Updated my answer. It looks like that filter was just added last month to source. – rwilliams Nov 22 '10 at 21:34
feedback

6 Answers

up vote 9 down vote accepted
+50

Have you tried transpose yet?

Update

You'll have to build FFMpeg from source if you want to use the transpose feature as it was just added in October.

The FFmpeg download page offers both git and svn options for getting the latest builds.

link|improve this answer
No, I have not. I didn't know it existed. I'll give that a shot. – jocull Nov 21 '10 at 1:04
The transpose filter does not seem to exist in any of my FFmpeg builds. How am I supposed to add it? – jocull Nov 22 '10 at 17:30
In the version of the docs as of 2011-05-15 the correct link is now ffmpeg.org/ffmpeg-doc.html#SEC93 – Peter Hansen May 15 '11 at 23:59
Thanks, I updated the link. – rwilliams May 19 '11 at 0:24
the answer from @Alexy seems more relevant – meduz Apr 30 at 13:23
feedback

I came across this page while searching for the same answer. It is now six months since this was originally asked and the builds have been updated many times since then. However, I wanted to add an answer for anyone else that comes across here looking for this information.

I am using Debian Squeeze and FFMPEG version from those repositories.

The MAN page for ffmpeg states the following use ffmpeg -i inputfile.mpg -vf "transpose=1" outputfile.mpg

The key being that you are not to use a degree variable, but a predefined setting variable from the MAN page.
0=90CounterCLockwise and Vertical Flip (default) 1=90Clockwise 2=90CounterClockwise 3=90Clockwise and Vertical Flip

Note: this page and your question gave me the search term I needed for the MAN page (transpose). Thank you very much.

link|improve this answer
Thanks for the info! I was never able to actually get this working, as I generally have trouble building from source. I may see if I can get it working again now. – jocull Apr 18 '11 at 3:29
feedback

Rotate 90 clockwise:

ffmpeg -i in.mov -vf "transpose=1" out.mov

For the transpose parameter you can pass:

0 = 90CounterCLockwise and Vertical Flip (default)
1 = 90Clockwise
2 = 90CounterClockwise
3 = 90Clockwise and Vertical Flip

Tested on : * Ubuntu 11.10 ffmpeg version 0.7.3-4:0.7.3-0ubuntu0.11.10.1 * MacOsX Lion with homebrew's ffmpeg (ffmpeg version 0.10.2 built on Apr 26 2012 11:45:33 with clang 3.1 (tags/Apple/clang-318.0.58) )

link|improve this answer
Tested. It works, thank you. – jocull Mar 5 at 21:18
feedback
ffmpeg -vfilters "rotate=90" -i input.mp4 output.mp4 

won't work, even with latest source...

must change the order:

ffmpeg -i input.mp4 -vf vflip output.mp4

works fine

link|improve this answer
feedback

Unfortunately, the Ubuntu version of ffmpeg does support videofilters.

You need to use avidemux or some other editor to achieve the same effect.

In the programmatic way, mencoder has been recommended.

link|improve this answer
feedback

Is there a way to rotate around 63°?

link|improve this answer
+1 for this .... – Neel Basu May 24 at 6:17
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.