edl 1.1.2

Parse EDL (edit decision list) files.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
use chrono::Duration;

/// An EDL entry.
#[derive(Debug)]
pub struct Entry {
    pub index: usize,
    pub timestamp: Duration,
    pub duration: Duration,
    pub color: Option<String>,
    pub name: Option<String>,
    pub description: Option<String>,
}