mirror of
https://github.com/mpromonet/v4l2rtspserver
synced 2024-11-03 23:15:56 +00:00
26 lines
784 B
HTML
26 lines
784 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>
|
|
<h3>MPEG-DASH</h3>
|
|
<video controls id="dashvideo"></video>
|
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/dashjs/2.5.0/dash.all.min.js" ></script>
|
|
<script>
|
|
var player = new dashjs.MediaPlayer().create();
|
|
player.initialize(document.getElementById("dashvideo"),"unicast.mpd",true);
|
|
</script>
|
|
</body>
|
|
</html>
|
|
|