File size: 1,060 Bytes
8d5b577
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
<!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>