Skip to content

Instantly share code, notes, and snippets.

@terion-name
Created January 22, 2015 15:21
Show Gist options
  • Save terion-name/708283b1b7563fb86d97 to your computer and use it in GitHub Desktop.
Save terion-name/708283b1b7563fb86d97 to your computer and use it in GitHub Desktop.
Convert video for html5
ffmpeg -i "src.mp4" \
-b 2048k -vcodec libvpx -acodec libvorbis -ab 160000 -f webm -g 30 "v.webm" \
-b 3072k -vcodec libtheora -acodec libvorbis -ab 160000 -g 30 "v.ogv" \
-b 2048k -vcodec h264 -acodec libfaac -ab 160000 -g 30 "v.mp4"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment