Skip to content

Instantly share code, notes, and snippets.

@atma
Created December 16, 2012 17:38
Show Gist options
  • Save atma/4310042 to your computer and use it in GitHub Desktop.
Save atma/4310042 to your computer and use it in GitHub Desktop.
HTML5 Embedded Media - Video & Audio
<video poster="images/preview.png" width="1280" height="720" controls="controls" preload="none">
<source src="media/video.mp4" type="video/mp4"></source>
<source src="media/video.webm" type="video/webm"></source>
<source src="media/video.ogg" type="video/ogg"></source>
</video>
<audio controls="controls" preload="none">
<source src="music.ogg" type="audio/ogg">
<source src="music.mp3" type="audio/mpeg">
</audio>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment