You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Using avfoundation or dshow:
For Windows, if your application runs in an environment without a graphical interface, you can try using avfoundation (Windows 10+) or dshow (DirectShow) as sources to capture the screen.
For macOS, you can use avfoundation.
FFmpegFrameGrabber grabber = new FFmpegFrameGrabber("avfoundation");
rabber.setFormat("avfoundation");
FFmpegFrameGrabber grabber = new FFmpegFrameGrabber("dshow");
rabber.setFormat("dshow");
The text was updated successfully, but these errors were encountered:
Using avfoundation or dshow:
For Windows, if your application runs in an environment without a graphical interface, you can try using avfoundation (Windows 10+) or dshow (DirectShow) as sources to capture the screen.
For macOS, you can use avfoundation.
FFmpegFrameGrabber grabber = new FFmpegFrameGrabber("avfoundation");
rabber.setFormat("avfoundation");
FFmpegFrameGrabber grabber = new FFmpegFrameGrabber("dshow");
rabber.setFormat("dshow");
The text was updated successfully, but these errors were encountered: