-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathindex.html
38 lines (38 loc) · 1.22 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
<!DOCTYPE html>
<html>
<head>
<title>Resampler</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" href="style.css">
<script src="bundle.js"></script>
</head>
<body>
<h1 style="font-weight: 900">Resampler</h1>
<h3> <em>Audio resampling for nerds!</em> </h3>
<h2 style="margin-top: 2em; margin-bottom: 1em;">Resample to
<select id="freqSelect">
<option value="192000">192kHz</option>
<option value="96000">96kHz</option>
<option value="48000">48kHz</option>
<option value="44100">44.1kHz</option>
<option value="32000">32kHz</option>
<option value="22050">22.05kHz</option>
<option value="11025">11.025kHz</option>
<option value="8000">8kHz</option>
</select>
</h2>
<form class="dropzone" id="dropzone" disabled>
<div id="message" class="message">
<h4 id="note">Drop files here or click to upload an audio file to resample</h3>
<div id="spinner" class="spinner" style="display:none">
<div class="rect1"></div>
<div class="rect2"></div>
<div class="rect3"></div>
<div class="rect4"></div>
<div class="rect5"></div>
</div>
</div>
<input id="input" type="file" style="display:none">
</form>
</body>
</html>