GSvideo in 64-bit doesn't work with resolutions greater than 640x480
in
Contributed Library Questions
•
1 year ago
Hi,
I tried the "GettingStartedCaptureMac.pde" (included in GSvideo's library's examples) in Processing 2.0b3 at x64 mode, running on Mountain Lion 10.8.2 with build-it FaceTime HD camera in my MacBook Pro, and it doesn't support resolutions greater than 640x480, but in x32 mode it does.
I tried the follow code in x64 mode:
- import codeanticode.gsvideo.*;
- GSCapture cam;
- void setup() {
- size(800, 600);
- cam = new GSCapture(this, 800, 600);
- cam.start();
- }
- void draw() {
- if (cam.available() == true) {
- cam.read();
- image(cam, 0, 0);
- }
- }
But, in x32 mode it works fine.GSVideo version: 1.0.0The requested resolution of 800x600 is not supported by the capture device.Use one of the following resolutions instead:640x480160x120176x144320x240352x288
Anybody knows why? I want to work with javaCV library (it only run in x64 on my Mac) with a resolution greater than 640x480...
Thanks! and sorry about my english :)
1