outlines / templates /index.html
dynamicmortal's picture
Update templates/index.html
66a26ce
raw
history blame
736 Bytes
<!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>