-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
72 lines (55 loc) · 2.06 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
<!DOCTYPE html>
<html>
<head>
<title>shift</title>
<link rel="stylesheet" href="styles.css">
<script src="https://unpkg.com/wavesurfer.js@7"></script>
</head>
<body>
<input type="file" id="fileElem" accept="audio/*" style="display:none" >
<audio id="audio" ></audio>
<a id="download-link" style="display:none"></a>
<div id="title-section">
<div id="title-text-container">
<div id="title-text">shift</div>
</div>
<div id="help-text-container">
<p>A pitch shifting creative audio tool.
</p>
</div>
<div id="link-container">
<a class="help-link" id="readme--link" href="https://github.com/krismakesstuff/shift/blob/main/README.md" target="_blank">
readme.md
</a>
<a class="help-link" id="demo-video-link" href="https://www.youtube.com/watch?v=JzvFm5qHVag&list=PLiuKEx-WKKKZu05uo1tQpQ7bexYUBEdnx" target="_blank">
demo videos
</a>
<a class="help-link" id="repo-link" href="https://github.com/krismakesstuff/shift" target="_blank">
github repo
</a>
</div>
</div>
<div id="input-section">
<div id="waveform">
<!-- Your waveform content goes here -->
</div>
</div>
<div id="output-section">
<div id="waveform-file-text-container">
<div id="waveform-file-text-label">file:
</div>
<div id="waveform-file-text">No file loaded. Drag and drop an audio file anywhere on the page.
</div>
</div>
</div>
<div id="parameters-section">
<!-- parameters go here, added from uiBuilders.js-->
</div>
<div id="mouse-info-container">
<div id="mouse-info-text"></div>
</div>
<script type="module" src="uiBuilders.js"></script>
<script type="module" src="rnbo-helpers.js"></script>
<script type="module" src="main.js"></script>
</body>
</html>