edl

Crates.ioedl
lib.rsedl
version1.1.2
sourcesrc
created_at2022-10-06 08:50:36.258407
updated_at2022-10-06 15:01:04.250992
descriptionParse EDL (edit decision list) files.
homepage
repository
max_upload_size
id681103
size8,888
Ringo Hoffmann (zekroTJA)

documentation

https://docs.rs/edl

README

EDL

A very simple library to parse EDL (edit decision list) files.

Usage

Add the edl crate to your Cargo.toml.

[dependencies]
edl = "1"
let mut f = fs::File::open(Path::new("timeline.edl")).unwrap();

let mut data = String::new();
f.read_to_string(&mut data).unwrap();

let mut entries = edl::parser::parse(&data, 60)?;
entries.sort_by_key(|e| e.index);

Attention
Any read EDL contents passed to the parse function must have CRLF line endings!

Commit count: 0

cargo fmt