bevycapturemedia

Event based image & video capture for Bevy

Bevy tracking Crates.io docs.rs

Features

Supported Formats

Roadmap

A Simple Example

```rust use std::time::Duration; use bevy::prelude::*; use bevycapturemedia::{MediaCapture, BevyCapturePlugin};

pub fn spawncameras( mut commands: Commands, mut capture: MediaCapture, ) { let cameraentity = commands .spawn_bundle(Camera2dBundle::default()) .id();

// The tracking ID (1357) is arbitrary, but uniquely identifies this tracker
capture.start_tracking_camera(1357, camera_entity, Duration::from_secs(5));

}

pub fn takescreenshot( input: Resreleased(KeyCode::RShift) { // If you have many cameras, consider storing their IDs // in a resource capture.capture_png(1357); } }

fn main() { app::new() .addplugin(DefaultPlugins) .addplugins(bevycapturemedia::BevyCapturePlugin) .addstartupsystem(spawncameras) .addsystem(take_screenshot); } ```

https://user-images.githubusercontent.com/2522620/184448446-8cd5214b-81fa-41a3-bdbe-156412cc99cc.mp4

Contributing

All suggestions, issues, and pull requests are welcome. Any contributions must be licensed compatibly with this repository.

I want to add a new format!

Yes! This is great! There is a small checklist that any new format will need to meet to be included: