bytedeco/javacv

Can it support screen recording on remote Windows

Open

#2,261 opened on Aug 2, 2024

View on GitHub
 (0 comments) (0 reactions) (0 assignees)Java (1,583 forks)batch import
help wantedquestion

Repository metrics

Stars
 (6,985 stars)
PR merge metrics
 (No merged PRs in 30d)

Description

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");

Contributor guide