-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplaylist.html
More file actions
47 lines (46 loc) · 2.32 KB
/
playlist.html
File metadata and controls
47 lines (46 loc) · 2.32 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1" charset="utf-8" />
<meta name="keywords" content="music, mp3 play list">
<title>playlist</title>
<link rel="icon" type="image/x-icon" href="images/favicon.jpg">
<link rel="stylesheet" href="main.css" />
</head>
<body>
<p id="wah"></p>
<script type="text/javascript" src="js/body.js" defer></script>
<div class="audiobg">
<div class="container">
<table>
<tr>
<td style="padding-left: 10px;"><div class="spinner" id="spinner" style="display:none; width:40px; height:40px;"></div>
<img id="coverArt" alt="" style="display:none; width:200px;">
<div id="svg" style=width:10px;"></div>
</td>
<td style="padding: 0px;"><pre style="font-family: monospace;" id="tags"></pre>
<input type="file" id="fileInput" accept="audio/mp3" style="visibility:hidden;display:none">
<canvas id="waveform" width="1" height="1"></canvas>
<div id="controls" style="text-align: center;">
<button id="playBtn" disabled style="visibility:hidden;display:none">Play</button>
<button id="pauseBtn" disabled style="visibility:hidden;display:none">Pause</button>
<label style="visibility:hidden;display:none">
<input type="range" id="volumeSlider" min="0" max="2" step="0.01" value="1">
</label>
<button id="gainDown" style="visibility:hidden;display:none">-</button>
<button id="gainUp" style="visibility:hidden;display:none">+</button>
<span id="playtype" style="font-family: monospace;">linear</span>
<span style="font-family: monospace;">drc: <span style="font-family: monospace;" id="gainIndicator">0</span></span>
<span style="font-family: monospace;" id="rmsValue">RMS: 0.000</span><br><br>
<button id="autoGainToggle" style="visibility:hidden;display:none">Enable Auto Gain</button>
</div>
</td>
</tr>
</table>
</div>
</div>
<br><br><br>
<div class="container">
<script type="text/javascript" src="js/audio.js" defer></script>
</body>
</html>