Implemented HLS player (client-side), added scaffold for server-side HLS streamer

This commit is contained in:
the-m-monk
2025-12-30 00:29:05 +10:00
parent 32da27c404
commit 60edd082af
7 changed files with 74 additions and 1 deletions

13
web/video_player.html Normal file
View File

@@ -0,0 +1,13 @@
<link href="https://vjs.zencdn.net/8.23.4/video-js.css" rel="stylesheet" />
<video
id="video-player"
class="video-js vjs-default-skin"
controls
width="600"
height="300"
preload="auto"
></video>
<script src="https://vjs.zencdn.net/8.23.4/video.min.js"></script>
<script type="module" src="/web/js/pages/video_player.js"></script>