Skip to content

Instantly share code, notes, and snippets.

@jc00ke
Created March 14, 2020 19:50
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 jc00ke/06fba53f3c8571c7bcbeb5de0e59be77 to your computer and use it in GitHub Desktop.
Save jc00ke/06fba53f3c8571c7bcbeb5de0e59be77 to your computer and use it in GitHub Desktop.
Convert MOV files to other formats
> ffmpeg -i proj03.mov -codec:v libtheora -qscale:v 7 -codec:a libvorbis -qscale:a 5 proj03.ogg
> ffmpeg -i proj03.mov -c:v libvpx -crf 10 -b:v 1M -c:a libvorbis proj03.webm
> ffmpeg -i proj03.mov -vcodec h264 -acodec mp2 proj03.mp4
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment