-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
123 lines (94 loc) · 3.6 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
<html>
<head>
<meta http-equiv="Content-type" content="text/html; charset=utf-8">
<title>JS sampler</title>
<link href='css/jquery-ui.min.css' rel="stylesheet">
<link href='css/jquery-ui-slider-pips.css' rel="stylesheet">
<link href='css/style.css' rel="stylesheet">
</head>
<body>
<div id='sampler-container'>
<div id='display-wrapper'>
<div class='display-box' id='loading-screen' style='display:none;'>
<h1>loading: </h1>
</div>
<div class='display-box' id='welcome-screen'>
<h1>OverDubSampler</h1>
<p>Caution!. Can produce VERY LOUD sounds. Do not Use M/Mute unless using headphones.</p>
</div>
<div id='canvas-wrapper'>
<div id='wave'></div>
</div>
</div>
<div id="slider-range"></div>
<div id='range-label'><p>scrub</p></div>
<div id="slider-volume"></div>
<div id='volume-label'><p>volume</p></div>
<div id="slider-pitch"></div>
<div id='pitch-label'><p>pitch</p></div>
<div id='sampler-transport'>
<button class="ck-button" id='record'>RECORD</button>
<button class="ck-button" id='recording' style='display:none;'>RECORDING</button>
<button class="ck-button" id='stop' disabled>STOP</button>
<div class="ck-button btnstyle" id='looperbtn'>
<label disabled>
<input type="checkbox" value="0" id='looper'><span>LOOP</span>
</label>
</div>
<div class="ck-button btnstyle" id='micbtn'>
<label>
<input type="checkbox" id='mic'><span>MIC</span>
</label>
</div>
</div>
<div id='sampler-options'>
<button class="ck-button" id='save'>SAVE</button>
<label class="ck-button loadlabel">
<input type="file" id="load" />
<span id='load-text'>LOAD</span>
</label>
<button class="ck-button" id='clear' disabled>CLEAR</button>
<div class="ck-button btnstyle" id='micMutebtn'>
<label>
<input type="checkbox" id='micMute'><span>M/Mute</span>
</label>
</div>
</div>
<div id='sampler-effects'>
<div class="ck-button btnstyle" id='delaybtn'>
<label>
<input type="checkbox" id='delay'><span>DELAY</span>
</label>
</div>
</div>
<div id='sampler-delay-box'>
<div id='delay-tags'>
<div><span>time</span></div>
<div><span>feed</span></div>
<div><span>cutoff</span></div>
<div><span>wet</span></div>
<div><span>dry</span></div>
</div>
<div id="eq">
<span id='delay-time'></span>
<span id='delay-feed'></span>
<span id='delay-cutoff'></span>
<span id='delay-wet'></span>
<span id='delay-dry'></span>
</div>
</div>
</div>
<script src='js/jquery-2.1.4.min.js'></script>
<script src="js/jquery-ui.min.js"></script>
<script src="js/recorder.js"></script>
<script src='js/src/wavesurfer.js'></script>
<script src='js/src/util.js'></script>
<script src='js/src/webaudio.js'></script>
<script src='js/src/mediaelement.js'></script>
<script src='js/src/drawer.js'></script>
<script src='js/src/drawer.canvas.js'></script>
<!--<script src='js/wavesurfer.min.js'></script>-->
<script src="js/tuna.js"></script>
<script src='js/main.js'></script>
</body>
</html>