Skip to main content

Module tc_list

Module tc_list 

Source
Expand description

Timecode list import / export.

TcList parses a CSV file (or string) containing IN,OUT timecode pairs and returns them as Vec<(Timecode, Timecode)>.

§CSV format

# optional comment lines are ignored
00:00:01:00,00:00:04:00
00:01:00;00,00:01:30;00
  • Separator: , (comma) or \t (tab).
  • Timecode format: HH:MM:SS:FF (NDF) or HH:MM:SS;FF (DF with semicolon).
  • Lines starting with # or empty lines are skipped.
  • Additional trailing fields on a line are ignored.

Structs§

TcList
A collection of IN/OUT timecode pairs.