Skip to content

Instantly share code, notes, and snippets.

Created December 13, 2015 17:22
Show Gist options
  • Save anonymous/b86c54c42bda0dfa020a to your computer and use it in GitHub Desktop.
Save anonymous/b86c54c42bda0dfa020a to your computer and use it in GitHub Desktop.
Video.js Example Embed // source http://jsbin.com/gupoha
<!DOCTYPE html>
<html>
<head>
<meta charset=utf-8 />
<title>Video.js Example Embed</title>
<link href="http://vjs.zencdn.net/5.3.0/video-js.css" rel="stylesheet">
<script src="http://vjs.zencdn.net/5.3.0/video.js"></script>
</head>
<body>
<h1>Video.js Example Embed</h1>
<video id="my_video_1" class="video-js vjs-default-skin" controls preload="auto" width="640" height="268"
data-setup='{ "playbackRates": [0.5, 0.75, 1, 1.25, 1.5, 1.75, 2] }'>
<source src="http://vjs.zencdn.net/v/oceans.mp4" type='video/mp4'>
<source src="http://vjs.zencdn.net/v/oceans.webm" type='video/webm'>
</video>
<script>
</script>
<script id="jsbin-source-html" type="text/html"><!DOCTYPE html>
<html>
<head>
<meta charset=utf-8 />
<title>Video.js Example Embed</title>
<link href="http://vjs.zencdn.net/5.3.0/video-js.css" rel="stylesheet">
<script src="http://vjs.zencdn.net/5.3.0/video.js"><\/script>
</head>
<body>
<h1>Video.js Example Embed</h1>
<video id="my_video_1" class="video-js vjs-default-skin" controls preload="auto" width="640" height="268"
data-setup='{ "playbackRates": [0.5, 0.75, 1, 1.25, 1.5, 1.75, 2] }'>
<source src="http://vjs.zencdn.net/v/oceans.mp4" type='video/mp4'>
<source src="http://vjs.zencdn.net/v/oceans.webm" type='video/webm'>
</video>
<script>
<\/script>
</body>
</html>
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment