talw-timecode 0.1.0

SMPTE timecode arithmetic — parse, format, convert, drop-frame
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#![cfg_attr(not(feature = "std"), no_std)]

pub mod convert;
pub mod dropframe;
pub mod error;
pub mod format;
pub mod framerate;
pub mod parse;
pub mod time_range;
pub mod timecode;

pub use error::TimecodeError;
pub use framerate::{FrameRate, Rational};
pub use time_range::TimeRange;
pub use timecode::Timecode;