-
Notifications
You must be signed in to change notification settings - Fork 6
/
index.html
55 lines (55 loc) · 3.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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta property="og:url" content="https://spec.sumianvoice.com/" />
<meta property="og:type" content="app" />
<meta property="og:title" content="Spectrus" />
<meta property="og:description" content="A spectrogram made in JS" />
<meta property="og:image" content="img/specexample.jpg" />
<meta content="img/specexample.jpg" property="og:image">
<meta content="img/specexample.jpg" property="twitter:image">
<meta property="theme-color" content="#2f4">
<meta charset="utf-8">
<title>Spectrus</title>
<link rel="icon" type="image/x-icon" href="img/favicon.ico">
<link rel="stylesheet" href="css/master.css">
</head>
<body>
<div id="div"></div>
<div id="controls-wrap">
<div class="">
<button type="button" name="button" onclick="audioSystem.spec.specMaxIncrement(1000);">+</button>
<button type="button" name="button" onclick="audioSystem.spec.specMaxIncrement(-1000);">-</button>
<span></span>
<button type="button" name="button" onclick="audioSystem.spec.trackFormantToggle();" id="trackFormantToggle">formant tracking</button>
<button type="button" name="button" onclick="audioSystem.spec.scaleModeToggle();" id="scaleModeToggle">scale<br>mode</button>
<div class="">
<span>
<input id="pitchCeilingAlert" type="number" name="" value="0" title="maximum pitch alert; 0 to disable">
<p class="tooltip">alert max pitch</p>
</span>
<span>
<input id="pitchFloorAlert" type="number" name="" value="0" title="minimum pitch alert; 0 to disable">
<p class="tooltip">alert minimum pitch</p>
</span>
</div>
<button type="button" name="button" onclick="audioSystem.spec.notationToggle();" id="notationToggle">experimental notation</button>
<button type="button" name="button" onclick="audioSystem.gui.harmonicstoggle();" id="harmonicstoggle">show harmonics</button>
<button type="button" name="button" onclick="audioSystem.spec.pitchTrackModeToggle();" id="pitchtrackmode">pitch mode</button>
<button type="button" name="button" onclick="audioSystem.gui.vfvmtoggle();" id="VFVMtoggle">show VFVM</button>
<button type="button" name="button" onclick="audioSystem.gui.dataCollectStart();" id="startdata">Start Data</button>
<button type="button" name="button" onclick="audioSystem.gui.dataCollectStop();" id="stopdata">Stop Data</button>
<!-- -->
</div>
</div>
<script src="js/colormaps.js" charset="utf-8"></script>
<script src="js/interface/MouseListener.js" charset="utf-8"></script>
<script src="js/noteFreqTable.js" charset="utf-8"></script>
<script src="js/FFT/FFTAnalyser.js" charset="utf-8"></script>
<script src="js/animFrameLoop.js" charset="utf-8"></script>
<script src="js/spectrogram/Spectrogram.js" charset="utf-8"></script>
<script src="js/interface/GUIOverlay.js" charset="utf-8"></script>
<script src="js/AudioSystem.js" charset="utf-8"></script>
<script src="js/main.js" charset="utf-8"></script>
</body>
</html>