]> OzVa Git service - note-remover/commitdiff
added examples
authorwill <greenwoodw50@gmail.com>
Sat, 6 Apr 2024 19:18:06 +0000 (20:18 +0100)
committerwill <greenwoodw50@gmail.com>
Sat, 6 Apr 2024 19:18:06 +0000 (20:18 +0100)
clean.wav [new file with mode: 0644]
no_c_minor.wav [new file with mode: 0644]
note-remover.html
only_c_minor.wav [new file with mode: 0644]

diff --git a/clean.wav b/clean.wav
new file mode 100644 (file)
index 0000000..397f14c
Binary files /dev/null and b/clean.wav differ
diff --git a/no_c_minor.wav b/no_c_minor.wav
new file mode 100644 (file)
index 0000000..685f8c3
Binary files /dev/null and b/no_c_minor.wav differ
index 98fdfbe6b14b62118dfb594522044d42b1ad8d7b..b588a467d27a577ddbc9dcbee7d1723ec1641762 100644 (file)
@@ -1,6 +1,7 @@
 <!DOCTYPE html>
-<html>
-    <head>
+<html><head>
+<meta http-equiv="content-type" content="text/html; charset=windows-1252">
+       <title>Note</title>
         <style>
             html {
                 background-color: gray;
         </script>
     </head>
     <body>
-        <h1>Key removal filter generator</h1>
+        <h1>Note removal filter generator</h1>
+       <p>
+               Generates .txt file filters for importing into Audacity. Requires JavaScript.
+       </p>
+       <fieldset>
+               <legend>Sample</legend>
+               
+               <p>Rachmaninoff's Piano Concerto #2 Op. 18 in C minor:</p>
+               <audio controls="controls">
+                       <source src="Note_files/clean.wav" type="audio/wav">
+               </audio>        
+
+               <p>Op. 18 with the notes of the C minor chord removed:</p>
+               <audio controls="controls">
+                       <source src="Note_files/no_c_minor.wav" type="audio/wav">
+               </audio>
+               
+               <p>Op 18. with only the notes of the C minor chord:</p>
+               <audio controls="controls">
+                       <source src="Note_files/only_c_minor.wav" type="audio/wav">
+               </audio>
+       </fieldset><br>
         <form>
 
             <fieldset>
 
              <input type="button" onclick="calculateFilter();" value="Generate"><br><br>
 
-             <textarea readonly name="stats" id="stats" rows="1" style="width:100%;">Stats</textarea><br>
+             <textarea readonly="readonly" name="stats" id="stats" rows="1" style="width:100%;">Stats</textarea><br>
 
-            <textarea readonly name="textual" id="textual" style="width:100%; height:200px;">Generate filter</textarea>
+            <textarea readonly="readonly" name="textual" id="textual" style="width:100%; height:200px;">Generate filter</textarea>
         </form>
         <p>(c) William Greenwood 2023</p>
-    </body>
-</html>
+    
+
+</body></html>
\ No newline at end of file
diff --git a/only_c_minor.wav b/only_c_minor.wav
new file mode 100644 (file)
index 0000000..5ad91ce
Binary files /dev/null and b/only_c_minor.wav differ