tiny-livestream/static/stream.html

30 lines
799 B
HTML

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>The Apparatus</title>
<script src="/mux.js"></script>
<script src="/shaka-player.compiled.js"></script>
<script src="/shaka-player.ui.js"></script>
<script src="/stream.js"></script>
<link rel="stylesheet" href="/material_icons.css"/>
<link rel="stylesheet" href="/controls.css"/>
<link rel="stylesheet" href="/app.css"/>
<script>
var streamer = window.location.pathname.split("/")[1];
document.getElementsByTagName("title")[0].textContent = streamer+" - The Apparatus";
</script>
</head>
<body class="stream-only">
<noscript>
The Apparatus requires JavaScript. Sorry.
</noscript>
<div id="shaka-mount-point">
<video id="video"></video>
</div>
</div>
</body>
</html>