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
13
14
15
16
17
//! Encoding vocabulary — codec, container format, color/pixel format, output
//! settings, presets, and the codec/format compatibility registry.

/// Codec identifiers, profiles, levels, and well-known constants.
pub mod codec;
/// Color space, color range, and pixel format types.
pub mod color;
/// Built-in codec/format catalog seeded into a fresh [`registry::Registry`].
mod defaults;
/// Container/file format identifiers and well-known constants.
pub mod format;
/// Output configuration, quality, and encoding settings.
pub mod output;
/// Preset output configurations for common formats.
pub mod presets;
/// Codec/format compatibility registry.
pub mod registry;