xcap 0.9.4

XCap is a cross-platform screen capture library written in Rust. It supports Linux (X11, Wayland), MacOS, and Windows. XCap supports screenshot and video recording (WIP).
1
2
3
4
5
6
7
8
9
10
mod capture;
pub mod utils;
mod wayland_capture;
mod wayland_video_recorder;
pub mod xorg_capture;
mod xorg_video_recorder;

pub mod impl_monitor;
pub mod impl_video_recorder;
pub mod impl_window;