stream-server/static/index.html

13 lines
267 B
HTML
Raw Normal View History

<!DOCTYPE html>
<html>
<head>
2023-10-27 12:46:16 +05:00
<title>{{ . }}</title>
</head>
<body>
<video id=vid1 autoplay muted></video>
2023-10-27 12:46:16 +05:00
<img src="/img/{{ . }}"></img>
</body>
<script src="/static/hls-player.js"></script>
<script>var stream = new VideoLoader('vid1');</script>
</html>