Vtc.Timecode.abs
You're seeing just the function
abs
, go back to Vtc.Timecode module for more information.
Specs
Returns the absolute value of tc
.
Examples
iex> tc = Timecode.with_frames!("-01:00:00:00", Rates.f23_98())
iex> Timecode.abs(tc) |> inspect()
"<01:00:00:00 @ <23.98 NTSC NDF>>"
iex> tc = Timecode.with_frames!("01:00:00:00", Rates.f23_98())
iex> Timecode.abs(tc) |> inspect()
"<01:00:00:00 @ <23.98 NTSC NDF>>"