1. Flip video vertically
ffmpeg -i INPUT.mp4 -vf vflip -c:a copy OUTPUT.mp4
2. Flip video horizontally
ffmpeg -i INPUT.mp4 -vf hflip -c:a copy OUTPUT.mp4
3. Rotate Video 90 degrees clockwise
ffmpeg -i INPUT.mp4 -vf transpose=1 -c:a copy OUTPUT.mp4
4. Rotate 90 degrees counterclockwise
ffmpeg -i INPUT.mp4 -vf transpose=2 -c:a copy OUTPUT.mp4
Related posts:
- FFMPEG Command to Extract Audio Mp3 From Mp4 or Any Extension Video in Command Line | FFMPEG Convert MP4 to Mp3 in Windows 10 Full Tutorial For Beginners
- FFMPEG Command to Overlay Video on Video at Different Locations on Command Line
- Node.js FFMPEG Command to Convert PDF to MP4 Video in Command Line Using Javascript Full Project For Beginners
- FFMPEG Command to Convert Mp4 Video at Particular Time to GIF Image File on Command Line Full Project For Beginners
- FFMPEG Command to Zoom in and Out Images Smooth Transition and Convert it to MP4 Video on Command Line
- FFMPEG Command to Extract Frames From Video With Timestamp or Convert Video to Images Full Tutorial For Beginners
- FFMPEG Command to Convert Webm Video to MP4 Video File in Windows 10 Full Tutorial For Beginners
- FFMPEG Command to Convert MKV Video to MP4 Video File in Windows 10 Full Tutorial For Beginners
- FFMPEG Command to Convert H264 Video to MP4 Video File in Windows 10 Full Tutorial For Beginners
- FFMPEG Command to Convert OGV Video File to MP4 Video File in Windows 10 Full Tutorial For Beginners
- FFMPEG Command to Convert TS Video File to MP4 Video File Using libx264 Filter in Windows 10 Full Project For Beginners
- FFMPEG Command to Convert MOV Video File to MP4 Video File in Windows 10 Full Tutorial For Beginners
- FFMPEG Command to Convert AVI Video File to MP4 Video File in Windows 10 Full Project For Beginners
- C FFMPEG Program to Transcode RGB Video to Greyscale Video on Command Line Full Project For Beginners
- Python 3 FFMPEG Script to Convert Powerpoint (.PPTX) File to Video File in Command Line Using python-pptx Library
- Build a React Native OTP Number Input Component Using react-native-otp-input Library in Javascript Full Project For Beginners
- Svelte.js Tutorial to Take Mask Input Field Values in Forms For Credit Cards,Birthday Using svelte-input-mask Library Full Project For Beginners
- AngularJS Input Mask Form Fields Validation Example For Phone Numbers & Currency Input Full Project For Beginners
- Vue.js Input Mask Form Fields Validation Example Using vue-input-mask Library For Phone Numbers,Credit Cards & Dates Full Project For Beginners
- Build a jQuery Tagify Youtube Like Tag Input Fields to Take Input From User in Browser Using HTML5 & Javascript Full Project For Beginners