We closed this forum 18 June 2010. It has served us well since 2005 as the ALPHA forum did before it from 2002 to 2005. New discussions are ongoing at the new URL http://forum.processing.org. You'll need to sign up and get a new user account. We're sorry about that inconvenience, but we think it's better in the long run. The content on this forum will remain online.
IndexProgramming Questions & HelpVideo Capture,  Movie Playback,  Vision Libraries › Can't use webcam together with Processing! HELP!!!
Page Index Toggle Pages: 1
Can't use webcam together with Processing! HELP!!! (Read 533 times)
Can't use webcam together with Processing! HELP!!!
May 3rd, 2008, 6:21pm
 
please help me with the following problem:

code: (simple code testing the webcam only)




import processing.video.*;
Capture video;

void setup() {
 size(200,200);
 video = new Capture(this, width, height);
}

void captureEvent(Capture video) {
 video.read();
}

void draw() {
 image(video, 0, 0);
}




error message:
quicktime.std.StdQTException[QTJava:7.4.5g],-9405=couldntGetRequiredComponent,QT.vers:7458000
at quicktime.std.StdQTException.checkError(StdQTException.java:38)




what's happening?
can anyone help???

thanks a lot
Re: Can't use webcam together with Processing! HEL
Reply #1 - May 4th, 2008, 8:11pm
 
have you read the video reference about problems with video? see the second item:
http://processing.org/reference/libraries/video/
Page Index Toggle Pages: 1