-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
34 lines (32 loc) · 1.17 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
<!DOCTYPE html>
<html>
<head>
<title>Mixer</title>
<meta charset="utf-8">
</head>
<body>
<canvas id="c" width="750"></canvas>
<audio id="a" src="ir.mp3"></audio> <!--fast way to load for testing without xhr-->
<br />
<input id="file" type="file"/>
<p>Gain: </p>
<input id="slider" type="range" min="0" max="1" step=".01"/>
<!-- EQ controls -->
<p>High: </p>
<input id="h_slider" type="range" min="-40" max="40" step=".5"/>
<p>Mid: </p>
<input id="m_slider" type="range" min="-40" max="40" step=".5"/>
<p>Bass: </p>
<input id="b_slider" type="range" min="-40" max="40" step=".5"/>
<p>Filter: </p>
<input id="f_slider" type="range" min="-1" max="1" step=".001"/>
<p>Distortion: </p>
<input id="d_slider" type="range" min="0" max="100" step="1"/>
<p>Delay:</p>
Balance: <input id="delay_balance_slider" type="range" min="0" max="1" step=".01"/>
Time: <input id="delay_time_slider" type="range" min=".1" max="2" step=".01"/>
Feedback: <input id="delay_feedback_slider" type="range" min=".1" max="1" step=".01"/>
<script type="text/javascript" src="effects.js"></script>
<script type="text/javascript" src="index.js"></script>
</body>
</html>