Skip to content

Latest commit

 

History

History
23 lines (19 loc) · 583 Bytes

README.md

File metadata and controls

23 lines (19 loc) · 583 Bytes

Presentation Graphic Stream

Parsing Presentation Graphic Stream (BluRay Subtitle Format - SUP files)

Build Status

Usage

use pgs_parse::PgsParser;

let parser = PgsParser::parse("subtitle.sup");
match parser {
    Ok(parser) => {
        let ds = parser.get_display_sets();
        // ...
    },
    Err(err) => {
        // ...
    }
}