-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathindex.html
39 lines (39 loc) · 1.65 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
<!doctype html>
<meta charset="utf-8">
<html>
<head>
<title>local_audio_visualizer</title>
<script type="text/javascript" src="js/local_audio_visualizer.js"></script>
<link rel="stylesheet" href="css/style.css" />
</head>
<body>
<div id="container">
<a href="https://github.com/cbrandolino/local-audio-visualizer"><img style="position: absolute; top: 0; left: 0; border: 0;" src="https://s3.amazonaws.com/github/ribbons/forkme_left_white_ffffff.png" alt="Fork me on GitHub"></a>
<div id="canvas-container">
<canvas width=800 height=300 id="canvas"></canvas>
<canvas width=800 height=300 id="canvas-copy"></canvas>
</div>
<div id="instructions">
<h2>
Drag an audio file to play it locally<br />
and visualize it
</h2>
</div>
<div id="bottom-bar">
<div id="button">
</div>
<div id="info">
<h1>Local Music Visualizer</h1>
<p>Uses the following HTML5 featrures:
<a href="http://www.html5rocks.com/en/tutorials/webaudio/intro/">Web Audio API</a>,
<a href="http://www.html5rocks.com/en/tutorials/dnd/basics/">drop events</a>,
<a href="http://www.html5rocks.com/en/features/file_access">file access</a>, and
<a href="http://www.html5rocks.com/en/tutorials/canvas/integrating/">canvas</a>.
</p><p>Only works on the most recent versions of Chrome (and possibly Safari).
</p><p>Here's the <a href="http://cbrandolino.github.com/local-audio-visualizer/docs/local_audio_visualizer">documentation</a>, and here's
<a href="http://github.com/cbrandolino">cbrandolino's github</a>.
</div>
</div>
</div>
</body>
</html>