srs-client 0.3.0

Provides bindings for the main functionalities of the SRS
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! SRS Client helps to
//!
//! Simplify to working process with [SRS] under Rust.
//!
//! [SRS]: https://ossrs.io
mod callback_api;
mod http_api;

pub use crate::{
    callback_api::{SrsCallbackEvent, SrsCallbackReq},
    http_api::{
        Audio, Client, Hls, Kbps, Publish, SrsClient, SrsClientError, SrsClientResp,
        SrsClientRespData, Stream, Summary, Tests, Urls, Vhost, Video,
    },
};