I am trying to create software mirrors in processing but the moment i am trying to scale down my video beyond size(320,240) I am getting error
import processing.video.*;
Capture video;
int vScale=8;
int cols,rows;
void setup(){
size(640,480);
cols=width/vScale;
rows=height/vScale;
video=new Capture(this,cols,rows);
video.start();
}
error in the console:
the requested resolution of 80x60 is not supported by the selected capture device
is thr a way to qo around this
plz advice