dextreamer 0.2.0

A sleek and simple wrapper around gstreamer for handling video streams in Rust
1
2
3
pub trait FrameHandler: Send {
    fn handle_new_frame(&self, frame_data: &[u8], frame_size: (u32, u32));
}