Redirect to custom video player on every url

This commit is contained in:
2022-06-18 01:13:54 +02:00
parent 9b4bcc6c64
commit 8990e25a72
4 changed files with 27 additions and 17 deletions

15
src/ui/player/player.html Normal file
View File

@ -0,0 +1,15 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>HLS</title>
<link rel="stylesheet" href="player.css">
<script src="player.js" defer></script>
</head>
<body>
<video id="video"></video>
<div id="message-container">
<p id="message" hidden></p>
</div>
</body>
</html>