This commit is contained in:
Astatin3
2024-03-26 14:07:09 -06:00
parent f8d9da826c
commit f8d5729e52
24 changed files with 4318 additions and 0 deletions
+19
View File
@@ -0,0 +1,19 @@
public class main {
public static void main(String[] args) {
// This is a spectrogram, that I made in-class.
// Code.org has a max framerate around 2 fps, so the visual isn't the best.
// Also, the audio doesn't sync up with the spectrograph the visual as well as it could.
///// My personal narrative: ////
// I have seen a spectrograph of a 56kb dialup connection before,
// So... Here is a spectrograph of a 56kb dialup connection.
/////////////////////
// Also, here is me using a method in the String class:
" ".trim();
Spectrogram.run("dialup.wav");
}
}