docker-streaming-server/stream-player/index.html

16 lines
406 B
HTML
Raw Permalink Normal View History

2020-09-20 01:09:20 +02:00
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Stream player</title>
2020-10-08 17:53:59 +02:00
<link rel="icon" href="data:;base64,iVBORw0KGgo=">
2020-09-20 01:09:20 +02:00
<link rel="stylesheet" href="main.css">
</head>
<body>
2020-10-08 22:07:58 +02:00
<video class="video-js vjs-fill vjs-big-play-centered" autoplay controls data-setup='{}'>
2020-09-20 01:09:20 +02:00
<source src="hls/stream.m3u8" type="application/x-mpegURL" />
</video>
<script src="main.js"></script>
</body>
</html>