Hi everyone!
i have a problem, i have already connected my webcam with the Processing library and used the " Capture" class . Here, everything is OKAY... but i wanted to use high quality resolution with the MovieMaker class because it allows to use MovieMaker.HIGH ... here Processing let me an error message saying the MovieMaker class has been removed in processing 2.0. soooooooo... how can i use a better resolution because it is really bad for the moment... ( my webcam have 1.3 mega pixel , is the problem of quality may come from this? on skype the quality is excellent... )
and if my topic is not really clear , i copy my code here! ;)
import processing.video.*;
Capture myCapture;
void setup () {
size(500,500, P2D);
myCapture = new Capture(this, width, height, 60);
}
void captureEvent (Capture myCapture){
myCapture.read();
}
void draw(){
image(myCapture, 0, 0);
}
thanks for your answers ( and sorry for my english i'm french and i'm trying to give you my best ^^)
XO
1