-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
62 lines (54 loc) · 2.07 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>freqshow</title>
<link rel="stylesheet" type="text/css" href="css/foundation.min.css" />
<link rel="stylesheet" href="css/foundation-icons.css" />
<link rel="stylesheet" type="text/css" href="css/page.css" />
<script src="lib/d3.min.js" charset="utf-8"></script>
<script src="lib/underscore.min.js" charset="utf-8"></script>
<script src="js/d3-ext.js" charset="utf-8"></script>
<script src="lib/jquery.min.js" charset="utf-8"></script>
<script src="lib/dsp.js" charset="utf-8"></script>
<script src="js/audio.js" charset="utf-8"></script>
<script src="js/controls.js" charset="utf-8"></script>
<script src="js/freqshow.js" charset="utf-8"></script>
</head>
<body>
<div id="header">
<span class="button-thing">
<a role="button" href="javascript:void(0);" class="button small" id="play-pause">
<i class="fi-play size-48"></i>
</a>
</span>
<span class="button-thing">
<a role="button" href="javascript:void(0);" class="button small" id="loop-enable">
<i class="fi-loop size-48" style="color:#444444"></i>
</a>
</span>
<span id="time-code"></span>
<span id="audio-data">
<!-- <span>url: <span id="filename"></span></span>-->
<span>sample rate: <span id="samplerate"></span></span>
<!-- <span>channels: <span id="numchannels"></span></span>
<span>length: <span id="numframes"></span></span>-->
</span>
<span id="song-info">
<span id="artist-name"></span><br/><span id="track-name"></span>
</span>
<span id="logo"></span>
</div>
<div id="waveforms">
<canvas id="waveform-full" height="95"></canvas>
<canvas id="waveform-zoom" height="145"></canvas>
<canvas id="spectrogram-zoom" height="145"></canvas>
</div>
<div id="visualization">
<canvas id="oscilliscope"></canvas>
</div>
<div id="lyrics">
<p></p>
</div>
</body>
</html>