Created
June 5, 2012 19:01
-
-
Save tomgullo/2877003 to your computer and use it in GitHub Desktop.
display video
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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