gst-client 0.2.1

Provides bindings for the main functionalities of the GStreamer Daemon
Documentation
1
2
3
4
5
6
7
8
9
10
//! API endpoints used inside [`crate::GstClient`] for
//! communication with [`GStD`] based on
//!
//! [`GStD`]: https://developer.ridgerun.com/wiki/index.php/GStreamer_Daemon
mod bus;
mod debug;
mod element;
mod pipeline;

pub use self::{bus::PipelineBus, debug::Debug, element::PipelineElement, pipeline::Pipeline};