EBU-STL subtitling format in Rust
A basic implementation of a parser for the EBU-STL subtitling file format.
This is a fork of ebustl, for maintenance purposes
Example:
use parse_stl_from_file;
use env;
use process;
License: EUPL
A basic implementation of a parser for the EBU-STL subtitling file format.
This is a fork of ebustl, for maintenance purposes
Example:
use ebustl_parser::parse_stl_from_file;
use std::env;
use std::process;
fn main() {
let stl = parse_stl_from_file("/path/to/subtiltle.stl").expect("Parse stl from file");
println!("{:?}", stl);
}
License: EUPL