Here is an example of how to use video.js with HTTP Live Streaming (HLS) with an m3u8 playlist file:
< !doctype html>
<html>
<head>
<link rel="nofollow" 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>
3 Responses to VideoJS m3u8 example