19 lines
402 B
HTML
19 lines
402 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Test</title>
|
|
</head>
|
|
<body>
|
|
<video id=vid1 autoplay muted></video>
|
|
</body>
|
|
<script src="https://cdn.jsdelivr.net/npm/hls.js@1"></script>
|
|
<script>
|
|
var video = document.getElementById("vid1");
|
|
var videoSrc = "/list/{{.}}";
|
|
if (Hls.isSupported()) {
|
|
var hls = new Hls();
|
|
hls.loadSource(videoSrc);
|
|
hls.attachMedia(video);
|
|
}
|
|
</script>
|
|
</html>
|