cridecoder 0.2.1

CRI codec library for ACB/AWB, HCA audio, and USM video extraction
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! USM video container module
//!
//! This module provides functionality for extracting video and audio
//! from CRI USM video containers, and building new USM containers.

mod builder;
mod extractor;
mod metadata;

pub use builder::{StreamInput, StreamType, UsmBuilder, UsmBuilderError};
pub use extractor::{
    extract_usm, extract_usm_file, extract_usm_to_memory, ExtractedUsmStream, UsmError,
};
pub use metadata::{
    export_metadata_file, read_metadata, read_metadata_file, Metadata, MetadataSection,
};