oximedia-net 0.1.2

Network streaming for OxiMedia
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! DASH (Dynamic Adaptive Streaming over HTTP) server implementation.
//!
//! This module provides a complete DASH server with support for:
//! - MPD (Media Presentation Description) generation
//! - Segment templates
//! - Multi-period support
//! - Low latency DASH
//! - Multiple representations

pub mod ll_dash;
pub mod mpd;
pub mod server;

pub use ll_dash::LlDashConfig;
pub use mpd::{MpdBuilder, Representation};
pub use server::DashServer;