Ovidiu Miu
Ovidiu Miu
Can you provide an example about using this library with create-react-app?
Local images are not rendered - neither using absolute or relative paths `` Or am I doing something wrong?
``` import ddf.minim.*; Minim minim = new Minim(this); AudioPlayer s1; void setup() { size(640, 360); background(255); s1 = minim.loadFile("http://www.noiseaddicts.com/samples_1w72b820/2553.mp3"); s1.loop(); // the play() method works } void draw() { background(400,...