-
Flip the video image horizontally and/or vertically.
+
Flip the video image horizontally and/or vertically
ffmpeg -i input_file -filter:v "hflip,vflip" output_file
- ffmpeg
- starts the command
- -i input_file
- path, name and extension of the input file
- - -filter:v -filter:v "hflip,vflip"
- flips the image horizontally and vertically
By using only one of the parameters hflip or vflip for filtering the image is flipped on that axis only. The quote marks are not mandatory.
+ - -filter:v "hflip,vflip"
- flips the image horizontally and vertically
By using only one of the parameters hflip or vflip for filtering the image is flipped on that axis only. The quote marks are not mandatory.
- output_file.mpg
- path and name of the output file