oximedia-audio-analysis 0.1.0

Audio analysis tools for media including loudness, spectrum, and speech detection
Documentation
1
2
3
4
5
6
7
8
9
//! Formant analysis module using Linear Predictive Coding (LPC).

pub mod analyze;
pub mod track;
pub mod vowel;

pub use analyze::{FormantAnalyzer, FormantResult};
pub use track::FormantTracker;
pub use vowel::{detect_vowel, Vowel};