-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
84 lines (75 loc) · 1.27 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
<html><head><meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>capture microphone then show time & frequency domain output</title>
<script type="text/javascript" src="./script.js"></script>
<script type="text/javascript" src="./ui.js"></script>
</head>
<body>
<p>Type all of the frequencies you want to test:</p>
<textarea id="frequencies" rows=20>
50
60
70
80
90
100
130
160
200
250
300
350
400
450
500
550
600
650
700
750
800
850
900
950
1000
1300
1600
2000
2500
3000
3500
4000
4500
5000
5500
6000
6500
7000
7500
8000
8500
9000
9500
10000
10500
11000
11500
12000
12500
13000
13500
14000
</textarea>
<p>Results (dB):</p>
<textarea id="results" rows=20>
</textarea>
<p><input type="button" onclick="ui.testVolume();" value="Test Volume!" />
<input type="button" onclick="ui.measure();" value="Measure!" /></p>
<p>Reference (dB) (paste here the Results of some measured speaker):</p>
<textarea id="reference" rows=20>
</textarea>
<p>Equalizer output (freq, dB):</p>
<textarea id="output" rows=20>
</textarea>
<p><input type="button" onclick="ui.calculateProfile();" value="Calculate profile!" /></p>
</body>
</html>