-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathindex.html
30 lines (26 loc) · 1.03 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
<!DOCTYPE html>
<html>
<head>
<!-- <script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/2.2.3/jquery.js"></script> -->
<script src="https://apis.google.com/js/api.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/recorderjs/0.1.0/recorder.js"></script>
<script src="js/recorder.js"></script>
<!-- <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script> -->
</head>
<body>
<textarea id="note_area" autofocus></textarea>
<p>Record audio from following buttons</p>
<!-- Draw the action buttons -->
<button id="start-btn">Start recording</button>
<button id="stop-btn" disabled>Stop recording</button>
<section class="experiment">
<div id="audiosContainer"></div>
</section>
<!-- List item to store the recording files so they can be played in the browser -->
<h2>Stored Recordings</h2>
<ul id="recordingslist"></ul>
<br>
<!-- <button onclick="authenticate().then(loadClient)">authorize and load</button> -->
<button onclick="execute()">execute</button>
</body>
</html>