vsd 0.5.0

A command-line utility and library for downloading streams from DASH manifests and HLS playlists.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Common types used for parsing, representing, and describing HLS and DASH playlists.

mod master;
mod media;
mod other;
mod types;

pub(crate) use master::ClipRange;

pub use types::{
    Key, KeyMethod, Map, MasterPlaylist, MediaPlaylist, MediaType, PlaylistType, Range, Segment,
    StreamMetadata,
};