processing-video icon indicating copy to clipboard operation
processing-video copied to clipboard

UnsatisfiedLinkError: Could not load library: gstreamer

Open chestic3211 opened this issue 3 years ago • 0 comments

import processing.video.*;

Capture cam;

void setup() { size(640, 480);

String[] cameras = Capture.list();

if (cameras.length == 0) { println("There are no cameras available for capture."); exit(); } else { println("Available cameras:"); for (int i = 0; i < cameras.length; i++) { println(cameras[i]); }

cam = new Capture(this, cameras[0]);
cam.start();     

}
}

void draw() { if (cam.available() == true) { cam.read(); } image(cam, 0, 0); }

Environment Win10 Processing 4.0b2

It keeps saying error and I can't understand why?

chestic3211 avatar Jan 15 '22 13:01 chestic3211