vobsub 0.2.3

Decode DVD VobSub-format subtitles (*.sub/*.idx files)
Documentation
1
2
3
4
5
6
7
8
//! The `*.sub` portion of VobSub subtitles is packaged in MPEG-2 Program
//! Stream packets, which we have some limited support for parsing.

mod clock;
pub mod pes;
pub mod ps;

pub use self::clock::*;