Casey Reas
Casey Reas
https://github.com/processing/processing-video/issues/58
We're getting this error message: ERROR: /node/set: Synth 1 not found When a sound file is looping. For example: ``` import processing.sound.*; SoundFile soundfile1; void setup() { size(640, 360); background(255);...
See https://github.com/processing/processing-docs/issues/634
"Processing 3.03a on Mac OSX 10.9 crashes the JVM when using the sndfile library part of the new sound lib. All other parts like IO , FX and Synth work...
When a sketch that uses Sound is closed through the PDE by hitting the `Stop` button, all is fine. But if the sketch is closed on the display window, it...
The documentation mentions only "This is a Soundfile Player which allows to play back and manipulate sound files of various formats." The documentation should be clear about which audio formats...
The jump() method for SoundFile throws errors in situations like this: ``` void draw() { float sp = map(mouseX, 100, width-100, 0, soundfile.duration()); soundfile.jump(sp); } ```
``` float angle; void setup() { size(400, 400, P3D); noStroke(); } void draw() { background(0); pointLight(200, 200, 200, width/2, height/2, -200); translate(width/2, height/2); rotateY(angle); beginShape(QUADS); normal(0, 0, 1); fill(50, 50,...