Hi r3ptile,
I'm having the same problem as you, and i know why
Your HDV cam (FX1 or Z1 ?) has the downconvert setting turned on and so your supposed to be HDV capture is in fact DV stream (720x576 anamorphic) displayed and stretched in processing as 1280x720.
Quote:Menu > IN/OUT REC > MENU I.LINK CONV > ON (HDV->DV)
If you turn this option OFF, the camera will act as a HDV (named DV-VCR) in Quicktime Video Recording.
Unfortunately Quicktime for Java can't import/access HDV natively, so you'll get stuck at maximum 1024x756 (pal 16:9) by keeping the downconvert option ON.
It is the maximum i can get (you can try to change the settings with the example sketch below).
Good luck
Quote:import processing.video.*;
Capture camera1;
void setup()
{
size(1024, 576, P3D); // P3D gives a less pixelated video rendering.
println(Capture.list());
camera1 = new Capture(this, 1024, 576, "DVCPRO HD (1080i50)", 10);
camera1.settings();
}
void captureEvent(Capture camera1)
{
camera1.read();
}
void draw()
{
image(camera1, 0, 0);
}