File size: 735 Bytes
b7ee2a7
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<html>
  <head>
    <title>Video Dubbing Application</title>
  </head>
  <body>
    {% for message in get_flashed_messages() %}
      {{ message }}
    {% endfor %}
    <form action="/" method="post" enctype="multipart/form-data">
      <input type="radio" name="source" value="url" checked> Import from URL
      <input type="text" name="video_url">
      <br>
      <input type="radio" name="source" value="file"> Upload Video File
      <input type="file" name="video_file">
      <br>
      <label for="language">Dubbed Language:</label>
      <select id="language" name="language">
        <option value="hi">Hindi</option>
      </select>
      <br><br>
      <input type="submit" value="Dub Video">
    </form>
  </body>
</html>