Skip to content

Instantly share code, notes, and snippets.

@gsemino
Created April 28, 2017 18:02
Show Gist options
  • Save gsemino/87b93ac7982c49a6597768576197ede6 to your computer and use it in GitHub Desktop.
Save gsemino/87b93ac7982c49a6597768576197ede6 to your computer and use it in GitHub Desktop.
simple html5 video example with mp4 and webm source
<!DOCTYPE html>
<html>
<body>
<video width="640" height="360" controls>
<source src="video_url.mp4" type="video/mp4">
<source src="video_url.webm" type="video/webm">
Your browser does not support HTML5 video.
</video>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment