summaryrefslogtreecommitdiff
path: root/tools/editor/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'tools/editor/index.html')
-rw-r--r--tools/editor/index.html36
1 files changed, 0 insertions, 36 deletions
diff --git a/tools/editor/index.html b/tools/editor/index.html
deleted file mode 100644
index 82a11ce..0000000
--- a/tools/editor/index.html
+++ /dev/null
@@ -1,36 +0,0 @@
-<!DOCTYPE html>
-<html lang="en">
-<head>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <title>Spectrogram Editor</title>
- <link rel="stylesheet" href="style.css">
-</head>
-<body>
- <h1>Spectrogram Editor</h1>
-
- <input type="file" id="specFileInput" accept=".spec">
- <label for="specFileInput">Load SPEC File</label>
-
- <div id="editorContainer">
- <canvas id="spectrogramCanvas"></canvas>
- <div id="controls">
- <h2>Tools</h2>
- <button id="lineTool">Line</button>
- <button id="ellipseTool">Ellipse</button>
- <button id="noiseTool">Noise</button>
- <button id="undoButton">Undo</button>
- <button id="redoButton">Redo</button>
- <hr>
- <h2>Playback</h2>
- <button id="listenOriginalButton">Listen Original</button>
- <button id="listenGeneratedButton">Listen Generated</button>
- <!-- Add more tool controls later -->
- </div>
- </div>
-
- <script src="sdf.js"></script>
- <script src="dct.js"></script>
- <script src="script.js"></script>
-</body>
-</html>