Skip to content

Instantly share code, notes, and snippets.

@micahasmith
Created December 23, 2011 16:21
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save micahasmith/1514625 to your computer and use it in GitHub Desktop.
Save micahasmith/1514625 to your computer and use it in GitHub Desktop.
ffmpeg html5 video maker script
#!/bin/bash
# html5 videos maker
ffmpeg -i $1 -b 1500k -vcodec libx264 -g 30 -s 640x360 $1.mp4
ffmpeg -i $1 -b 1500k -vcodec libvpx -acodec libvorbis -ab 55000 -f webm -g 30 -s 640x360 $1.webm
ffmpeg -i $1 -b 1500k -vcodec libtheora -acodec libvorbis -ab 55000 -g 30 -s 640x360 $1.ogv
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment