Skip to content

Instantly share code, notes, and snippets.

@tomgullo
Created June 5, 2012 19:01
Show Gist options
  • Save tomgullo/2877003 to your computer and use it in GitHub Desktop.
Save tomgullo/2877003 to your computer and use it in GitHub Desktop.
display video
ffmpeg -i file.mpeg file.webm
ffmpeg -i file.mpeg -vcodec libx264 -vpre libx264-hq -b 1500k file.mp4
<video width="320" height="240" controls="controls">
<source src="file.mp4" type="video/mp4"/>
<source src="file.webm" type="video/webm"/>
<p>Your browser does not support this video</p>
</video>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment