-
Notifications
You must be signed in to change notification settings - Fork 2
/
visualizer.html
59 lines (51 loc) · 1.92 KB
/
visualizer.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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"><head>
<title>FFT Visualizations</title>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<meta name="viewport" content="width=800" />
<link rel="stylesheet" type="text/css" href='stymaps/styles/mapscripts.css' />
</head>
<body>
<div id="header-canvas">
<canvas id='cv' width='1024' height='576'
style="image-rendering:optimizespeed ! important;">
<div id='main-header'>
<h1>FFT Visualizations</h1>
Please play in a new web browser, like Firefox or Chrome.
</div>
</canvas>
</div>
<div id="stream" style="text-align: center">
<br />
<audio id="aud1" preload="auto" controls="true">
<source src="audio/morning-01.mp3" />
<source src="audio/morning-01.ogg" />
</audio>
</div>
<a href="http://www.w3.org/2010/05/video/mediaevents.html" target="_blank">Media Help</a>
<p id="vstatus"></p>
<p id="license" style="color:#fff">
<img src="http://i.creativecommons.org/l/by-sa/3.0/nz/88x31.png" alt="Creative Commons Licence"><br />
<em>These demos by <a href="mailto:revlin@uni-sol.org">Revlin John </a> are licensed under the <a href="http://creativecommons.org/licenses/by-sa/3.0/nz/deed.en_GB">Creative Commons Attribution-ShareAlike 3.0 License, 2009-2016</a></em>
</p>
<script type="text/javascript" src="scripts/debugger.js"></script>
<script type="text/javascript" id="cvSrc" src="scripts/interact-visualizer.js"></script>
<script type="text/javascript">
(function() {
window.onload = function(){
canvasApp(window.cv);
};
if (typeof Debugger === "function") {
Debugger.on = false;
return;
} else {
window.Debugger = {
log: function() {
/* no debugger.js */
}
};
}
} )();
</script>
</body></html>