Skip to content

Instantly share code, notes, and snippets.

@VivekThazhathattil
Forked from ViktorNova/rotate-video.sh
Created February 7, 2024 04:12
Show Gist options
  • Save VivekThazhathattil/75a3ee5400521c78059dba72f2b2c9ec to your computer and use it in GitHub Desktop.
Save VivekThazhathattil/75a3ee5400521c78059dba72f2b2c9ec to your computer and use it in GitHub Desktop.
Rotate a video with FFmpeg (100% lossless, and quick)
$INPUTVIDEO='input.mp4'
$OUTPUTVIDEO='output.mp4'
ffmpeg -i $INPUTVIDEO -metadata:s:v rotate="-90" -codec copy $OUTPUTVIDEO
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment