Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

UnsatisfiedLinkError: Could not load library: gstreamer #193

Open
chestic3211 opened this issue Jan 15, 2022 · 0 comments
Open

UnsatisfiedLinkError: Could not load library: gstreamer #193

chestic3211 opened this issue Jan 15, 2022 · 0 comments

Comments

@chestic3211
Copy link

chestic3211 commented Jan 15, 2022

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?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant