Files
ytdlp-site/templates/video.html
2024-09-07 06:23:41 -06:00

21 lines
385 B
HTML

<!DOCTYPE html>
<html>
<head>
<title>Downloaded Videos</title>
<style>
</style>
</head>
<body>
<h1>Downloaded Video {{.video.Title}}</h1>
<video controls width="250">
<source src="/downloads/video/{{.video.VideoFilename}}" type="video/mp4" />
<!-- <source src="/media/cc0-videos/flower.mp4" type="video/mp4" /> -->
</video>
</body>
</html>