forked from addpipe/simple-web-audio-recorder-demo
-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
45 lines (39 loc) · 1.46 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
39
40
41
42
43
44
45
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Speech First Recorder</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Latest compiled and minified Bootstrap CSS -->
<link rel="stylesheet" href="bootstrap.min.css">
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<h1>Help us gather audio data!</h1>
<p>We are trying to build a model that can idenify what letter of the alphabet was said
by a speaker. Please help us gather some labeled data by recording yourself saying some letters.</p>
<h3>Instructions</h3>
<p>When you press record, you will be asked to say each letter 10 times</p>
<p>Note that we are looking for the pronunciation of the letter, not the name.</p>
<div style="max-width: 28em;">
<p>Convert recorded audio to:</p>
<select id="encodingTypeSelect">
<option value="wav">Waveform Audio (.wav)</option>
<option value="mp3">MP3 (MPEG-1 Audio Layer III) (.mp3)</option>
<option value="ogg">Ogg Vorbis (.ogg)</option>
</select>
<div id="controls">
<button id="recordButton">Record</button>
<button id="stopButton" disabled>Stop</button>
</div>
<div id="formats"></div>
<pre>Log</pre>
<pre id="log"></pre>
<pre>Recordings</pre>
<ol id="recordingsList"></ol>
</div>
<!-- inserting these scripts at the end to be able to use all the elements in the DOM -->
<script src="js/WebAudioRecorder.min.js"></script>
<script src="js/app.js"></script>
</body>
</html>