oximedia-net 0.1.4

Network streaming for OxiMedia
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! HLS (HTTP Live Streaming) server implementation.
//!
//! This module provides a complete HLS server with support for:
//! - Master playlists (variant streams)
//! - Media playlists (segment lists)
//! - LL-HLS (Low Latency HLS)
//! - DVR/time-shifting
//! - Multiple quality variants

pub mod ll_hls;
pub mod playlist;
pub mod server;

pub use ll_hls::LlHlsConfig;
pub use playlist::{MasterPlaylistBuilder, MediaPlaylistBuilder};
pub use server::HlsServer;