Files
ytdlp-site/templates/video.html
2024-09-08 05:58:21 -06:00

54 lines
1.1 KiB
HTML

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>{{.video.Title}}</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 20px;
box-sizing: border-box;
}
h1 {
text-align: center;
}
.video-container {
max-width: 600px;
margin: 0 auto;
}
video {
width: 100%;
max-width: 600px;
display: block;
margin: 0 auto;
}
@media (max-width: 600px) {
.video-container {
max-width: 100%;
}
video {
max-width: 100%;
}
}
</style>
</head>
<body>
<h1>{{.video.Title}}</h1>
<div class="video-container">
<video controls playsinline preload="metadata">
<source src="{{.tempURL}}" type="video/mp4">
Your browser does not support the video tag.
</video>
</div>
</body>
</html>