ffmpeg-pipeline 0.1.0

Composable FFmpeg decoding, encoding, remuxing, and media I/O for Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
mod auto_buffer;
mod resampling;
mod spec;

use super::*;
use std::convert::{TryFrom, TryInto};

pub use auto_buffer::AutoAudioBuffer;
pub use resampling::Resampler;
pub(crate) use spec::decoder_channel_layout;
pub use spec::AudioSpec;