clip_durations.tsv contains two columns: clip and duration[ms]
"non-binary": 0,
duration[ms] and non-binary can be a nuisance when manipulating data. It is better to use standardized naming, such as duration_ms and non_binary, which will be compatible with any system (e.g. databases, variables in any language etc).
I extensively use/manipulate all data and for such cases I sometimes have to write special code.
duration[ms]
andnon-binary
can be a nuisance when manipulating data. It is better to use standardized naming, such asduration_ms
andnon_binary
, which will be compatible with any system (e.g. databases, variables in any language etc).I extensively use/manipulate all data and for such cases I sometimes have to write special code.