vsd 0.2.5

Download video streams served over HTTP from websites, HLS and DASH playlists
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// REFERENCES: https://github.com/nilaoda/Mp4SubtitleParser

mod cue;
mod mp4parser;
mod reader;
mod ttml;
mod mp4subtitles;

use cue::Cue;
use mp4parser::{MP4Parser, Sample, TFHD, TRUN};
use reader::Reader;

pub use cue::Subtitles;
pub use mp4subtitles::MP4Subtitles;