2016-05-21 17:02:54 +00:00
|
|
|
<html>
|
2016-06-04 17:36:31 +00:00
|
|
|
<link rel="shortcut icon" href="about:blank"/>
|
2016-05-21 17:02:54 +00:00
|
|
|
<body>
|
2017-06-03 12:20:42 +00:00
|
|
|
<h3>HLS</h3>
|
|
|
|
<video controls id="hlsvideo"></video>
|
|
|
|
<script src="https://cdn.jsdelivr.net/hls.js/latest/hls.min.js" ></script>
|
2016-06-04 17:36:31 +00:00
|
|
|
<script>
|
|
|
|
if (Hls.isSupported()) {
|
2017-06-03 12:20:42 +00:00
|
|
|
var video = document.getElementById("hlsvideo");
|
2016-06-04 17:36:31 +00:00
|
|
|
var hls = new Hls();
|
|
|
|
hls.loadSource("unicast.m3u8");
|
|
|
|
hls.attachMedia(video);
|
|
|
|
hls.on(Hls.Events.MANIFEST_PARSED, function() { video.play(); });
|
|
|
|
}
|
|
|
|
</script>
|
2016-05-21 17:02:54 +00:00
|
|
|
</body>
|
|
|
|
</html>
|
|
|
|
|