ff-filter 0.14.2

Video and audio filter graph operations - the Rust way
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! Video effects — both whole-file and frame-level.
//!
//! - [`Stabilizer`] — two-pass video stabilization via `vidstabdetect` /
//!   `vidstabtransform` (whole-file).
//! - [`FilterGraph::motion_blur`](crate::FilterGraph::motion_blur) — shutter-angle
//!   motion blur via `tblend` (frame-level, extends [`crate::FilterGraph`]).
//! - [`LensProfile`] — predefined lens distortion correction profiles for common cameras.

mod audio_effects;
pub(crate) mod effects_inner;
pub mod lens_profile;
mod stabilizer;
mod video_effects;

pub use audio_effects::NoiseType;
pub use lens_profile::LensProfile;
pub use stabilizer::{AnalyzeOptions, Interpolation, StabilizeOptions, Stabilizer};