pivich-flask / index.html
waxihiv547's picture
Create index.html
e313354 verified
raw
history blame
No virus
647 Bytes
<!DOCTYPE html>
<html>
<head>
<title>Sovits Chapay</title>
</head>
<body>
<h1>Sovits Chapay</h1>
<form action="/inference" method="post" enctype="multipart/form-data">
<input type="file" name="audio" accept="audio/*" required>
<br>
<select name="speaker" required>
{% for speaker in speakers %}
<option value="{{ speaker }}">{{ speaker }}</option>
{% endfor %}
</select>
<br>
<input type="submit" value="Generate">
</form>
{% if limitation %}
<p>Please upload an audio file that is less than 20 seconds.</p>
{% endif %}
</body>
</html>