mirror of
https://github.com/Astatin3/Code.org-Final-Projects.git
synced 2026-06-08 16:08:02 -06:00
19 lines
615 B
Java
19 lines
615 B
Java
|
|
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");
|
||
|
|
}
|
||
|
|
}
|