小编典典

使用 FFmpeg 旋转视频

all

我一直在试图弄清楚如何使用 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.

拥有vfliphflip 的选项非常棒,但它们不会让我到达我需要去的地方。我需要至少能够将视频旋转 90 度。270
度也是一个很好的选择。旋转选项哪里去了?


阅读 334

收藏
2022-03-13

共1个答案

小编典典

顺时针旋转 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 "transpose=2,transpose=2"180 度。

确保您使用此处的最新 ffmpeg 版本(静态构建可以正常工作)。

请注意,这将重新编码音频和视频部分 。您通常可以在不触摸音频的情况下复制音频,使用-c:a copy.
要更改视频质量,请设置比特率(例如使用-b:v 1M)或查看H.264
编码指南
(如果您需要 VBR 选项)。

一个解决方案也是使用这个方便的脚本

2022-03-13