! Finalizing video fetch endpoint

With this the backend is officially at an MVP stage and now requires polishing
Proper data streaming for larger clips is basically required
for a really good backend(especially async streaming)
and some better css for the video player
This commit is contained in:
shockrah
2021-10-16 18:14:04 -07:00
parent d6b076970f
commit c53d9a293e
5 changed files with 15 additions and 12 deletions

View File

@@ -19,12 +19,14 @@
{% endif %}
</head>
<body>
<div id="layout">
<div class="content">
<h1></h1>
<div class="video-gallery" id="main-container">
</div>
</div>
</div>
<div id="layout">
<div class="content">
<h1>{{title}}</h1>
<video width="1280" height="720" controls>
<source src="{{clip_url}}" type="">
wtf get a better browser 1d10t
</video>
</div>
</div>
</body>
</html>