Skip to content

Instantly share code, notes, and snippets.

@wingsum93
Created July 21, 2019 05:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save wingsum93/d7f6a7812164e0d928f0c0cc4653a1b4 to your computer and use it in GitHub Desktop.
Save wingsum93/d7f6a7812164e0d928f0c0cc4653a1b4 to your computer and use it in GitHub Desktop.
Ffmpeg Command Brief

ffmpeg -i input.mp4 -c:v vp9 -c:a libvorbis output.mkv

ffmpeg -i input.webm -c:v copy -c:a flac output.mkv

ffmpeg -i input.webm -c:av copy output.mkv

ffmpeg -i input.webm -c:a copy -c:v vp9 -b:v 1M output.mkv

ffmpeg -i input.webm -c:a copy -c:v vp9 -r 30 output.mkv

ffmpeg -i input.mkv -c:a copy -s hd720 output.mkv

ffmpeg -i input.mkv -c:a copy -s 1280x720 output.mkv

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment