Quantcast
Channel: Library Questions - Processing 2.x and 3.x Forum
Viewing all articles
Browse latest Browse all 2896

Can't run the sketch with processing.sound

$
0
0

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


Viewing all articles
Browse latest Browse all 2896

Trending Articles