Last active
December 22, 2015 01:48
-
-
Save techphoria414/6398764 to your computer and use it in GitHub Desktop.
HTML5 Video Tag with mp4 and webm
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
<video id="video-player" class="video-js vjs-default-skin" | |
controls preload="auto" width="640" height="360" | |
poster="poster.jpg" | |
data-setup=''> | |
<source src="test_01_720.webm" type='video/webm' /> | |
<source src="test_01_720.mp4" type='video/mp4' /> | |
</video> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment