rskit-media 0.2.0-alpha.3

Media types, codec/format registry, pipeline builder, and processing traits
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Media probing traits and metadata types.
//!
//! Defines the [`MediaProbe`] trait for inspecting media files, along with all associated types:
//! [`MediaMetadata`], [`KeyframeInfo`], [`SilenceInterval`], and [`Chapter`].

mod analysis;
mod media_probe;
mod metadata;

pub use analysis::{Chapter, KeyframeInfo, PictureType, SilenceInterval};
pub use media_probe::MediaProbe;
pub use metadata::MediaMetadata;