Я пытался выяснить, как вращать видео с 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 градусов было бы отличным вариантом, чтобы иметь. Куда делись опции поворота?
-vf "vflip,hflip"
работает как шарм.
-vf "vflip,hflip"