-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
37 lines (32 loc) · 1.14 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
<!DOCTYPE html>
<html>
<head>
<title>AudioWorklet Live Coding</title>
<script src="lib/codemirror/codemirror.js"></script>
<link rel="stylesheet" href="lib/codemirror/codemirror.css">
<script src="lib/codemirror/javascript.js"></script>
<script src="lib/codemirror/matchbrackets.js"></script>
<script src="lib/codemirror/trailingspace.js"></script>
<script src="lib/codemirror/closebrackets.js"></script>
<script src="lib/jshint.js"></script>
<script src="lib/codemirror/lint.js"></script>
<script src="lib/codemirror/javascript-lint.js"></script>
<link rel="stylesheet" href="lib/codemirror/lint.css">
<script src="livecode.js"></script>
<link rel="stylesheet" href="livecode.css">
</head>
<body>
<h1>Audio Worklet Live Coding</h1>
<div id="unsupported">
<h2>Your browser does not support AudioWorklet</h2>
<p>
AudioWorklet is currently available in Chrome 66+
</p>
<p>
<a href="https://developers.google.com/web/updates/2017/12/audio-worklet">(Source)</a>
</p>
</div>
<h2 id="sampleRateMsg">Your sample rate is: <span id="sampleRate"></span></h2>
<div id="container"></div>
</body>
</html>