Removed Sound class, added Engine + Audio Device. No need to start a stream anymore.

This commit is contained in:
wirsing
2014-07-01 18:47:40 -07:00
parent 795caeaf82
commit f4b2b36e0d
35 changed files with 307 additions and 154 deletions
@@ -5,16 +5,12 @@ This is a sound file player.
import processing.sound.*;
Sound stream;
SoundFile soundfile;
void setup() {
size(640,360);
background(255);
// Create and start the sound renderer
stream = new Sound(this);
//Load a soundfile
soundfile = new SoundFile(this, "vibraphon.aiff");