-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnew_index.html
29 lines (24 loc) · 1.11 KB
/
new_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
<!DOCTYPE html>
<html>
<head>
<title>Circular waveform</title>
<!--Bootstarp link-->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
</head>
<body>
<!-- <script src="app.css"></script> -->
<nav class="navbar navbar-dark bg-dark ">
<span class="navbar-brand mb-9 h1 mx-auto">Circular Waveform</span>
</nav>
<input type="file" id="audioInput" class="form-control" accept="audio/*" ><br/>
<button id="button" class="btn btn-primary">Get Waveform</button>
<button id="capture" class="btn btn-primary">Capture!</button><br/>
<div class="vz-wrapper">
<audio id="myAudio" data-author="Author" data-title="title"></audio>
<div class="vz-wrapper -canvas">
<canvas id="myCanvas" width="800" height="400"></canvas>
</div>
</div>
<script src="visualizer.js"></script>
</body>
</html>