Can't run the sketch with processing.sound

edited December 2016 in Library Questions

So, I've been searching around the web about this, and I found some solutions, but seems like none worked (reinstall Processing, move the sketch folder somewhere else, and I've seen the Minim library, but I would prefer to use processing.sound).

I actually got it working yesterday, but today it's saying again: Target VM failed to initialize.

So, pretty much I can recreate this with the code below.

import processing.sound.*;
WhiteNoise noise;

void setup() {
  size(800, 600);
  background(255);

  noise = new WhiteNoise(this);
  noise.play();
}

Here's the log, if it helps. http://pastebin.com/LrYq4Kcy

Sign In or Register to comment.