मैं कैसे FFmpeg के साथ वीडियो को घुमाने के लिए पता लगाने की कोशिश कर रहा है। मैं पोर्ट्रेट मोड में लिए गए iPhone वीडियो के साथ काम कर रहा हूं। मुझे पता है कि MediaInfo (उत्कृष्ट पुस्तकालय, btw) का उपयोग करके रोटेशन की वर्तमान डिग्री का निर्धारण कैसे किया जाता है , लेकिन मैं अब FFmpeg पर फंस गया हूं।
मैंने जो पढ़ा है, उससे आपको जो उपयोग करने की आवश्यकता है, वह vfilter विकल्प है। मैं जो देखता हूं, उसके अनुसार इसे इस तरह दिखना चाहिए:
ffmpeg -vfilters "rotate=90" -i input.mp4 output.mp4
हालाँकि, मुझे यह काम करने के लिए नहीं मिल सकता है। सबसे पहले, -filters अब मौजूद नहीं है, यह अब -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"
एक आकर्षण की तरह काम करता है।