ebustl-parser

Crates.ioebustl-parser
lib.rsebustl-parser
version0.6.0
sourcesrc
created_at2024-10-30 08:37:43.888266
updated_at2024-11-11 10:55:35.283608
descriptionParse subtitle files in the EBU-STL format with Rust.
homepage
repositoryhttps://github.com/snaggen/ebustl-parser
max_upload_size
id1428210
size70,787
Mattias Eriksson (snaggen)

documentation

README

EBU-STL subtitling format in Rust

crates.io docs.rs

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;

fn main() {
    let stl = parse_stl_from_file("/path/to/subtiltle.stl").expect("Parse stl from file");
    println!("{:?}", stl);
}

License: EUPL

Commit count: 59

cargo fmt