我一直试图弄清楚如何旋转视频与FFmpeg。我正在处理以竖屏模式拍摄的iPhone视频。我知道如何使用MediaInfo(优秀的库,顺便说一下)确定当前的旋转程度,但我现在卡住了FFmpeg。

从我所读到的,你需要使用的是一个vfilter选项。根据我看到的,它应该是这样的:

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

然而,我不能让它工作。首先,-vfilters已经不存在了,现在只有-vf。其次,我得到这个错误:

No such filter: 'rotate'
Error opening filters!

据我所知,我有一个全选项的FFmpeg构建。运行ffmpeg -filters显示:

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.

拥有vflip和hflip的选项很棒,但它们不能让我去我需要去的地方。我需要至少能够将视频旋转90度。270度也是个不错的选择。旋转选项去哪儿了?


当前回答

你试过转置吗?就像(来自另一个答案)

 ffmpeg -i input -vf transpose=2 output

如果您使用的是旧版本,如果您想使用转置特性,则必须更新ffmpeg,因为它是在2011年10月添加的。

FFmpeg下载页面提供了可以直接执行的静态构建,而无需编译它们。

其他回答

默认情况下,ffmpeg.exe旋转过滤器可能会切割图像。为了保持原来的窗口宽度和高度,逆时针旋转90°,可以使用:


ffmpeg.exe -i infilename -vf rotate=-PI/2:oh=iw:ow=ih outfilename

通过添加:oh=iw:ow=ih,指定[外窗宽]=[输入窗高],[外窗宽]=[输入窗高],这相当于-vf转置=2,旋转而不切割图像。

在这里:

iw: input width
ih: input height
ow: output width
oh: output height

请参阅https://ffmpeg.org/ffmpeg-filters.html#rotate

不幸的是,Ubuntu版本的ffmpeg支持视频过滤器。

您需要使用avidemux或其他编辑器来实现相同的效果。

在编程方式上,推荐使用mencoder。

对我来说是这样的

顺时针旋转

 ffmpeg -i "path_source_video.mp4" -filter:v "transpose=1" "path_output_video.mp4"

逆时针方向旋转

 ffmpeg -i "path_source_video.mp4" -filter:v "transpose=0,transpose=1,transpose=0" -acodec copy "path_output_video.mp4"

我使用zeranoe包

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

不管用,即使是最新的消息来源…

必须改变顺序:

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

工作正常

顺时针旋转90:

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

对于转置参数,您可以传递:

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

使用-vf "转置=2,转置=2"旋转180度。

确保您使用的是这里的最新ffmpeg版本(静态构建就可以了)。

注意,这将重新编码音频和视频部分。你通常可以复制音频而不碰它,通过使用-c:a copy。要改变视频质量,可以设置比特率(例如-b:v 1M),如果需要VBR选项,可以查看H.264编码指南。

另一种解决方案是使用这个方便的脚本。