ff-encode 0.13.1

Video and audio encoding - the Rust way
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Shared utility types for ff-encode.

mod bitrate;
mod codec;
mod container;
mod hardware;
mod preset;
mod progress;

pub use bitrate::{BitrateMode, CRF_MAX};
pub use codec::{AudioCodec, VideoCodec, VideoCodecEncodeExt};
pub use container::OutputContainer;
pub use hardware::HardwareEncoder;
pub use preset::Preset;
pub use progress::{EncodeProgress, EncodeProgressCallback};