2023-05-24 13:23:58 +00:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="en">
|
|
|
|
|
|
|
|
<head>
|
2023-05-24 15:42:05 +00:00
|
|
|
<meta charset="utf-8" />
|
|
|
|
<title>VisualizerWebTest</title>
|
|
|
|
<base href="/" />
|
2023-05-24 13:23:58 +00:00
|
|
|
|
2023-05-24 15:42:05 +00:00
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
|
|
<link rel="icon" type="image/x-icon" href="/favicon.ico" />
|
|
|
|
<link rel="stylesheet" href="/src/styles.css" />
|
2023-05-24 13:23:58 +00:00
|
|
|
</head>
|
|
|
|
|
|
|
|
<body>
|
2023-05-24 15:42:05 +00:00
|
|
|
<div class="viz-wrapper">
|
|
|
|
<svg id="trapnation-canvas" viewBox="0 0 500 500" preserveAspectRatio="none"></svg>
|
|
|
|
<svg id="bar-canvas" viewBox="0 0 500 500" preserveAspectRatio="none"></svg>
|
2023-07-18 22:08:15 +00:00
|
|
|
<svg id="waveform-canvas" viewBox="0 0 500 500" preserveAspectRatio="none">
|
|
|
|
<clipPath id="clip-seek">
|
|
|
|
<rect id="clip-seek-rect" width="500" height="500" />
|
|
|
|
</clipPath>
|
|
|
|
<clipPath id="clip-time">
|
|
|
|
<rect id="clip-time-rect" width="500" height="500" />
|
|
|
|
</clipPath>
|
|
|
|
<use clip-path="url(#clip-seek)" href="#waveform-seek" />
|
|
|
|
<use clip-path="url(#clip-time)" href="#waveform-time" />
|
|
|
|
</svg>
|
2023-05-24 15:42:05 +00:00
|
|
|
</div>
|
|
|
|
<div class="player-wrapper">
|
|
|
|
<audio src="" id="audio"></audio>
|
|
|
|
<button id="play">Play</button>
|
|
|
|
<button id="pause">Pause</button>
|
|
|
|
<button id="toggle-play">Toggle Pause/Play</button>
|
|
|
|
<p id="current">-:--</p>
|
|
|
|
<input type="range" min="0" max="10" value="0" id="seek" step="0.01">
|
|
|
|
<p id="duration">-:--</p>
|
|
|
|
<span>
|
|
|
|
<input type="range" min="0" max="1" value="1" id="volume" step="0.01">
|
|
|
|
</span>
|
|
|
|
<button id="mute">Mute</button>
|
|
|
|
<button id="unmute">Unmute</button>
|
|
|
|
<button id="toggle-mute">Toggle Mute</button>
|
2023-05-24 13:23:58 +00:00
|
|
|
|
2023-05-24 15:42:05 +00:00
|
|
|
</div>
|
|
|
|
<script type="module" src="/src/main.ts"></script>
|
2023-05-24 13:23:58 +00:00
|
|
|
</body>
|
|
|
|
|
|
|
|
</html>
|