forked from server/soundboard
44 lines
1.4 KiB
HTML
44 lines
1.4 KiB
HTML
<!DOCTYPE html>
|
||
<html>
|
||
<head>
|
||
<meta charset="utf-8" />
|
||
<meta name="viewport" content="width=device-width,initial-scale=1">
|
||
<title>WIAI Soundboard</title>
|
||
<link rel="stylesheet" href="/static/main.css" />
|
||
</head>
|
||
<body>
|
||
<nav>
|
||
<a href="#sounds">Sounds</a>
|
||
<a href="#youtube">YouTube</a>
|
||
<a href="#voice">Voice</a>
|
||
</nav>
|
||
<content>
|
||
<section id="sounds">
|
||
<div><input type="text" id="search" /><span id="reset">⨯</span></div>
|
||
{% for sound in sounds %}
|
||
<div class="sound"><a href="{{ '/play/' + sound }}">{{ sound.split('.', 1)[0] }}</a></div>
|
||
{% endfor %}
|
||
</section>
|
||
<section id="youtube">
|
||
<form action="/" method="GET">
|
||
<label for="video">YouTube URL</label>
|
||
<input type="text" name="video" />
|
||
<input type="submit" value="Play" />
|
||
</form>
|
||
</section>
|
||
<section id="voice">
|
||
<form action="/say/" method="POST">
|
||
<input type="text" name="text" />
|
||
<input type="text" name="voice" placeholder="DE" />
|
||
<label for="speed">Speed</label>
|
||
<input type="range" name="speed" min="80" max="450" step="10" value="160" id="speed" />
|
||
<label for="pitch">Pitch</label>
|
||
<input type="range" name="pitch" min="0" max="99" step="1" value="50" id="pitch" />
|
||
<input type="submit" value="Voice" />
|
||
</form>
|
||
</section>
|
||
</content>
|
||
<script src="/static/main.js"></script>
|
||
</body>
|
||
</html>
|