ffmpeg-pipeline 0.2.0

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

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;
pub use transcode::transcode_audio_buffer;