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 › Processing 158 beta "quicktime.std.StdQTExcep
Page Index Toggle Pages: 1
Processing 158 beta "quicktime.std.StdQTExcep (Read 303 times)
Processing 158 beta "quicktime.std.StdQTExcep
Nov 4th, 2008, 8:02am
 
Actually i am quite a new user of Processing 158 beta..
current I am trying to use Processing 158 for camera detection.
But after i install QuickTime 7 and Vdig it still doesn't work on my processing 158.. and I had been cracking my brain to solve thing problem. And really don't know why.

To add on my code can be use in my processing 138 but not my 158.. really dun understand.. in need to help...=D



//this is my current code is very straight forward i guess..

import processing.video.*;
Capture myCapture;


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

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

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


Re: Processing 158 beta "quicktime.std.StdQTE
Reply #1 - Nov 4th, 2008, 2:31pm
 
Are you using 0154 or 0148? Release 0158 doesn't exist yet.
Re: Processing 158 beta "quicktime.std.StdQTE
Reply #2 - Nov 5th, 2008, 2:23am
 
Sorry I was actually meaning the version 152.
but i recently just download the version 154, and the problem had been solve. thanks for the help
Page Index Toggle Pages: 1