2020-09-20 01:09:20 +02:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<meta charset="utf-8">
|
|
|
|
<title>Stream playout</title>
|
|
|
|
<link rel="stylesheet" href="main.css">
|
2020-09-21 19:59:48 +02:00
|
|
|
<style>
|
|
|
|
body {
|
|
|
|
height: 100vh;
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
</style>
|
2020-09-20 01:09:20 +02:00
|
|
|
</head>
|
|
|
|
<body>
|
2020-09-21 19:59:48 +02:00
|
|
|
<video class="video-js vjs-fill" 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>
|