FFmpeg ile videoları nasıl döndüreceğimizi anlamaya çalışıyorum. Portre modunda çekilen iPhone videolarıyla çalışıyorum. MediaInfo (mükemmel kütüphane, btw) kullanarak mevcut dönme dereceleri belirlemek nasıl biliyorum ama şimdi FFmpeg üzerinde sıkışmış.
Okuduğum kadarıyla, kullanmanız gereken bir vfilter seçeneğidir. Gördüğüm göre, şöyle görünmeli:
ffmpeg -vfilters "rotate=90" -i input.mp4 output.mp4
Ancak, bunu işe alamıyorum. İlk olarak, -vfilters artık mevcut değil, şimdi sadece -vf . İkincisi, bu hatayı alıyorum:
No such filter: 'rotate'
Error opening filters!
Bildiğim kadarıyla, FFmpeg'in tüm seçenekleri olan bir yapım var. Ffmpeg -filters'ı çalıştırmak şunu gösterir:
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 ve hflip için seçeneklere sahip olmak harika ve hepsi, ama sadece gitmem gereken yere ulaşamıyorlar . Videoları en azından 90 derece döndürme yeteneğine ihtiyacım var. 270 derece de sahip olmak için mükemmel bir seçenek olacaktır. Döndürme seçenekleri nereye gitti?
-vf "vflip,hflip"
-vf "vflip,hflip"
bir cazibe gibi çalışıyor.