Skip to content

Instantly share code, notes, and snippets.

@ahmednuaman
Forked from yellowled/ffmpeg-html5
Last active December 26, 2015 05:29
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 ahmednuaman/7101144 to your computer and use it in GitHub Desktop.
Save ahmednuaman/7101144 to your computer and use it in GitHub Desktop.
# webm
ffmpeg -i IN -f webm -vcodec libvpx -acodec libvorbis -ab 128000 -crf 22 -s 640x360 OUT.webm
# mp4
ffmpeg -i IN -acodec libfaac -ac 2 -ab 128k -vcodec libx264 -f mp4 -crf 22 -s 640x360 OUT.mp4
# ogg (if you want to support older Firefox)
ffmpeg2theora IN -o OUT.ogv -x 640 -y 360 --videoquality 5 --audioquality 0 --frontend
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment