processing / processing-sound-archive

Archived Sound Library for Processing
125 stars 62 forks source link

loop() is not working with stereo files #101

Closed SoerenNorge closed 7 years ago

SoerenNorge commented 8 years ago

Hi

I'm having a issue with the loop() and stereofiles. It plays the soundfile once, and stops throwing the error: ERROR: /node/set: Synth 1 not found

I've tried using wav, aif, and mp3. But none of them works in stereo, only in mono.

Hope there's a fix for it

`import processing.sound.*; SoundFile soundscape;

void setup() { size(640, 360); background(255);

// Load a soundfile from the /data folder of the sketch and play it back soundscape = new SoundFile(this, "soundscape.wav"); soundscape.loop();

}
void draw() { }`

slambert commented 7 years ago

Duplicate? https://github.com/processing/processing-sound/issues/55