-
-
Save jrichardsz/ade9b1eb44fbd74873ba57f2675ff3ae to your computer and use it in GitHub Desktop.
Rotate videos 90 or 180 degrees using ffmpeg
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Rotate videos 90 or 180 degrees using ffmpeg. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
rem For the transpose parameter you can pass: | |
rem 0 = 90CounterCLockwise and Vertical Flip (default) | |
rem 1 = 90Clockwise | |
rem 2 = 90CounterClockwise | |
rem 3 = 90Clockwise and Vertical Flip | |
rem To rotate 180 degrees, instead use "transpose=2,transpose=2" | |
rem Using -codec:a copy will simply copy the audio instead of reencoding it. | |
ffmpeg -i in.mp4 -vf "transpose=1" -codec:a copy out.mp4 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment