Dubber / templates /dub.html
imseldrith's picture
Create dub.html
8d5b577
<!DOCTYPE html>
<html>
<head>
<title>Dubbed Video</title>
<style>
.container {
display: flex;
flex-direction: column;
align-items: center;
margin-top: 50px;
}
video {
width: 80%;
margin-bottom: 20px;
}
a {
padding: 10px 20px;
background-color: #4CAF50;
color: white;
border: none;
border-radius: 5px;
cursor: pointer;
text-decoration: none;
}
a:hover {
background-color: #3e8e41;
}
</style>
</head>
<body>
<div class="container">
<video controls>
<source src="{{url_for('download', filename=filename)}}" type="video/mp4">
</video>
<a href="{{url_for('download', filename=filename)}}">Download Dubbed Video</a>
</div>
</body>
</html>