-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
22 lines (22 loc) · 1.02 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Remove Center</title>
<meta name="description" content="Remove the center of stereo audio online.">
<meta name="keywords" content="Audio, Center, Experiment, Flip, Invert, Mono, Music, Phase, Polarity, Remove, Sound, Stereo, Web Audio">
<meta property="og:title" content="Remove Center">
<meta property="og:type" content="website">
<meta property="og:url" content="https://mysterypancake.github.io/Remove-Center">
<meta property="og:site_name" content="Remove Center">
<meta property="og:description" content="Remove the center of stereo audio online.">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" href="style.css">
<script src="script.js"></script>
</head>
<body onload="setup();">
<canvas id="canvas"></canvas>
<input type="file" id="file" accept="audio/*,video/*" onchange="upload(this);">
<a download id="download">You weren't supposed to see this</a>
</body>
</html>