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 & HelpPrograms › quicktime.std.StdQTException PLEASE HELP !!
Page Index Toggle Pages: 1
quicktime.std.StdQTException PLEASE HELP !! (Read 513 times)
quicktime.std.StdQTException PLEASE HELP !!
Apr 30th, 2008, 2:14pm
 
today I just tried to move my program in my laptop to a newly install desktop,
running the same program below, but I get an unexpected error that makes me puzzled =(
The error shows something about QuickTime, so I guess it would be something related to Java or Quicktime,
I then immediately go to download QuickTime and Java and installed.
This time another error comes:

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


import processing.video.*;
Capture myCapture;

void setup()
{
 size(640, 480);
 frameRate(30);
 myCapture = new Capture(this, width, height, 30);
}

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

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


Please help T^T..
Page Index Toggle Pages: 1