Skip to content

Instantly share code, notes, and snippets.

@wisicn
Forked from lieldulev/gist:3738681
Created February 19, 2013 07:05
Show Gist options
  • Save wisicn/4983702 to your computer and use it in GitHub Desktop.
Save wisicn/4983702 to your computer and use it in GitHub Desktop.
video.js sample for a m3u8 HLS ABR content
<!doctype html>
<html>
<head>
<link href="http://vjs.zencdn.net/c/video-js.css" rel="stylesheet">
<script src="http://vjs.zencdn.net/c/video.js"></script>
</head>
<body>
<video id="my_video_1" class="video-js vjs-default-skin" controls
preload="auto" width="640" height="264" poster="my_video_poster.png"
data-setup="{}">
<source src="http://server.name.tld/HLS/path.m3u8" type='application/vnd.apple.mpegurl'>
</video>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment