You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
v4l2rtspserver/index.html

19 lines
479 B
HTML

<html>
<link rel="shortcut icon" href="about:blank"/>
<body>
<h3>HLS</h3>
<video controls id="hlsvideo"></video>
<script src="https://cdn.jsdelivr.net/hls.js/latest/hls.min.js" ></script>
<script>
if (Hls.isSupported()) {
var video = document.getElementById("hlsvideo");
var hls = new Hls();
hls.loadSource("unicast.m3u8");
hls.attachMedia(video);
hls.on(Hls.Events.MANIFEST_PARSED, function() { video.play(); });
}
</script>
</body>
</html>