ebustl-parser

Crates.ioebustl-parser
lib.rsebustl-parser
version0.6.3
created_at2024-10-30 08:37:43.888266+00
updated_at2025-08-11 08:18:44.783583+00
descriptionParse subtitle files in the EBU-STL format with Rust.
homepage
repositoryhttps://github.com/snaggen/ebustl-parser
max_upload_size
id1428210
size69,869
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: 65

cargo fmt