File size: 736 Bytes
314040c
 
 
 
 
66a26ce
314040c
 
66a26ce
 
 
 
 
 
 
 
 
 
 
314040c
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Audio Processing App</title>
</head>
<body>
    <h1>Audio Processing App</h1>
    <form action="/transcribe" method="post" enctype="multipart/form-data">
        <label for="audio_file">Upload Audio File:</label>
        <input type="file" name="audio_file" accept=".wav, .mp3, .flac" required>
        <br>
        <label for="task">Task:</label>
        <input type="radio" name="task" value="transcribe" checked> Transcribe
        <input type="radio" name="task" value="translate"> Translate
        <br>
        <input type="submit" value="Process">
    </form>
</body>
</html>