streamer-rs 0.1.0

Backend-agnostic async library for streaming audio and video, with GStreamer as the first implementation.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/*
 * SpinorML Ltd 🚀 AGPL-3.0 License - https://spinorml.com/license
 */

mod decoder;
mod encoder;
pub mod frame;
mod pipeline;
mod sink;
mod source;
pub mod utils;

pub use decoder::GstVideoDecoder;
pub use encoder::GstVideoEncoder;
pub use frame::GstFrameData;
pub use pipeline::GstPipeline;
pub use sink::GstVideoSink;
pub use source::GstVideoSource;