4 releases

0.1.3 Apr 23, 2024
0.1.2 Apr 22, 2024
0.1.1 Apr 19, 2024
0.1.0 Apr 19, 2024

#27 in Multimedia

Download history 219/week @ 2024-04-15 304/week @ 2024-04-22

523 downloads per month

MIT/Apache

275KB
6K SLoC

CrabGrab 🦀 🖥️ 🦀

A cross-platform screen-capturing crate for rust

Crates.io Version docs.rs MacOS Documentation

Capturing video from screens and applications can be very hard, and it's even worse when you want to do it in a cross-platform application. CrabGrab makes it easy to do continuous frame capture that can be used for individual screenshots or for capturing video. It also includes common functionality needed for enumerating screens and applications. You can get from a window to a pixel buffer in just a few lines of code that will work on both Windows and MacOS.

#[tokio::main]
async fn main() { 
    let token = match CaptureStream::test_access(false) {
        Some(token) => token,
        None => CaptureStream::request_access(false).await.expect("Expected capture access")
    };
    let filter = CapturableContentFilter { windows: None, displays: true };
    let content = CapturableContent::new(filter).await.unwrap();
    let config = CaptureConfig::with_display(content.displays().next().unwrap(), CapturePixelFormat::Bgra8888);

    let mut stream = CaptureStream::new(token, config, |stream_event| {
        // The stream_event here could be a video frame or audio frame
        println!("result: {:?}", stream_event);
    }).unwrap();

    std::thread::sleep(Duration::from_millis(2000));

    stream.stop().unwrap();
}

With CrabGrab, you can build things like:

  1. An AI assistant that can see your screen. A fully functional AI assistant built on top of CrabGrab can be seen in the open source Snippy project.

Snippy, an AI assistant

  1. A screen recording tool like the Augmend client.

Augmend, a video capture tool

Features:

  • Screen and window capture supported
  • Compatible with multiple GPU APIs:
    • Wgpu
    • DX11
    • DXGI
    • Metal
    • IOSurface
  • Easy frame bitmap generation
  • Platform specific extension features
  • Screenshot facility
  • Sound capture (WIP)

Examples

For a full application example, check out Snippy, an AI assistant built on top of CrabGrab.

Small examples showing how to use the CrabGrab crate can be found at crabgrab/examples. You can run the examples from the repository:

cargo run --example <example_name>

Note that feature examples will require that feature:

cargo run --example <example name> --feature <feature name>

MacOS Docs

Unfortuantely due to our dependence on metal-rs, building docs for macos doesn't work on docs.rs, since they use linux containers. As a workaround, we host macos documentation in this repository - link above.

Contributions

All contributions are welcome! We are actively working on this project and are looking to expand the capabilities including sound capture, Linux support, and performance improvements.

Dependencies

~1–48MB
~736K SLoC