ffmpegx 0.1.1

Rust bindings for FFmpeg, providing common features such as frame sequence decoding and PCM data encoding/decoding.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
pub mod audio;
pub mod config;
pub mod core;
pub mod decode;
pub(crate) mod files;
pub mod keyframe;
pub mod media;
pub mod types;

pub use audio::*;
pub use config::*;
pub use core::*;
pub use decode::*;
pub(crate) use files::*;
pub use keyframe::*;
pub use media::*;
pub use types::*;