-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstring.html
More file actions
40 lines (37 loc) · 1.38 KB
/
string.html
File metadata and controls
40 lines (37 loc) · 1.38 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>String Simulation</title>
<script src="build/components/bundle.js"></script>
<style>
body {
font-family: Arial, Helvetica, sans-serif;
background-color: #111;
margin-top: 50px;
}
* {
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
#container {
overflow: hidden;
}
p {
margin-left: 15vw;
margin-right: 15vw;
}
</style>
</head>
<body>
<div id="container">
<physical-string-sim></physical-string-sim>
</div>
<p style="color: white; font-size: 1em;">
This web audio toy is part of my research into
<a href="https://blog.cochlea.xyz/sparse-interpretable-audio-codec-paper.html">sparse representations of musical audio</a>
and the decomposition of audio signals into <a href="https://blog.cochlea.xyz/rnn.html">systems of resonances and sparse control signals.</a>
Code can be found <a href="https://github.com/JohnVinyard/web-components/blob/main/components/physical.ts">here</a>.
</p>
</body>
</html>