-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.html
39 lines (37 loc) · 1.37 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Audio Timeline</title>
<script src="https://cdnjs.cloudflare.com/ajax/libs/vis/4.2.0/vis.min.js"></script>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/vis/4.2.0/vis.min.css"
/>
<link
rel="stylesheet"
href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css"
integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u"
crossorigin="anonymous"
/>
<link rel="stylesheet" type="text/css" href="style.css" />
<link rel="stylesheet" href="/style.css" />
<script src="https://unpkg.com/[email protected]/dist/peerjs.min.js"></script>
<script type="module">
import spoken from "https://cdn.skypack.dev/spoken";
</script>
<script type="module" src="/script.js" defer></script>
</head>
<body>
<div id="controls">
<button class="btn btn-light" id="talkButton">🤙 Talk</button>
<button class="btn btn-light" id="speakButton">👄 Text</button>
</div>
<br />
<div id="visualization"></div>
<div id="formats"></div>
<ol id="recordingsList"></ol>
<script src="https://cdn.rawgit.com/mattdiamond/Recorderjs/08e7abd9/dist/recorder.js"></script>
</body>
</html>