Skip to content

Instantly share code, notes, and snippets.

@deepakpk009
Created January 18, 2019 13:07
Show Gist options
  • Save deepakpk009/42987352fef0f9a352d5af7d4b06918d to your computer and use it in GitHub Desktop.
Save deepakpk009/42987352fef0f9a352d5af7d4b06918d to your computer and use it in GitHub Desktop.
ffmpeg conversion samples
convert .mov to .mp4
ffmpeg -i videoName.mov -vcodec h264 -acodec mp2 videoName.mp4
convert .mov to .webm
ffmpeg -i videoName.mov -c:v libvpx -crf 10 -b:v 1M -c:a libvorbis videoName.webm
convert .mov to .ogg
ffmpeg -i videoName.mov -codec:v libtheora -qscale:v 7 -codec:a libvorbis -qscale:a 5 videoName.ogg
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment