> Caused by: java.lang.NoSuchFieldError: processing.core.PApplet.platform
> at processing.video.Capture.<clinit>(Unknown Source)
After I tried to minimize the program, like this
import processing.video.*;
Capture cam;
void setup() {
size(640, 480);
String[] cameras = Capture.list();
}
But I received the same error message.
Can anybody help me, what is wrong ???
Thanks.