-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
28 lines (21 loc) · 836 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>audiate</title>
<link rel="stylesheet" href="assets/style.css">
<!-- P5 (for UI) -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/1.1.9/p5.min.js"></script>
<!-- Tone (for sounds) -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/tone/14.7.52/Tone.js"></script>
<!-- Tonal (for music interpretation) -->
<script src="https://cdn.jsdelivr.net/npm/@tonaljs/tonal/browser/tonal.min.js"></script>
<!-- Local copy of TF-JS, copied from https://github.com/marl/crepe/tree/gh-pages -->
<script src="https://cdn.jsdelivr.net/npm/@tensorflow/[email protected]/dist/tf.min.js"></script>
<script src="./app.js" defer></script>
</head>
<body>
<div align="center" hidden="true">
</div>
</body>
</html>