processing / processing-video

GStreamer-based video library for Processing
274 stars 130 forks source link

Processing Video on Mac #162

Closed KazimWalji closed 3 years ago

KazimWalji commented 4 years ago

WHen i try to caputure and show video in processing nothing works. Just gray screen. I deleted and redownloaded processing yet no luck. I cant display video, and its SO FRUSTRATING! ANy help? I didnt write my code, just copy and pasted the simple program for displaying webcam video from processing.org

louije commented 4 years ago

On a Mac with Catalina, workaround here has worked for me:

Also, the Capture examples need to be updated with a specific camera name:

  String [] cameras = Capture.list();
  video = new Capture(this, width, height, cameras[0]);

(replacing 0 with the index of the camera you're targeting.)

benfry commented 3 years ago

Duplicate of https://github.com/processing/processing-video/issues/134