aaruel
Results
2
issues of
aaruel
For example, given this code ``` import processing.sound.*; Amplitude amp; SoundFile file; void setup() { amp = new Amplitude(this); file = new SoundFile(this, "sample.mp3"); file.play(); amp.input(file); } ... ``` the...
I was having trouble playing some larger files and saw this change as an easy win.