mediaframe 0.1.3

A common media-stream descriptor vocabulary (pixel-format, colour, and frame metadata for video — audio/subtitle to follow) for media processing pipelines.
Documentation
//! Audio-stream descriptor vocabulary — channel layout, sample /
//! container format, bit-rate mode, EBU R128 loudness, fingerprint,
//! embedded metadata tags + cover art.

pub mod bit_rate_mode;
pub mod channel_layout;
pub mod cover_art;
pub mod fingerprint;
pub mod format;
pub mod loudness;
pub mod tags;

pub use bit_rate_mode::BitRateMode;
pub use channel_layout::ChannelLayout;
pub use cover_art::{CoverArt, CoverArtError};
pub use fingerprint::{Fingerprint, FingerprintError};
pub use format::{ContainerFormat, SampleFormat};
pub use loudness::Loudness;
pub use tags::Tags;