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
10
11
//! Music analysis module (extends oximedia-mir).

pub mod harmony;
pub mod instrument;
pub mod rhythm;
pub mod timbre;

pub use harmony::{HarmonyAnalyzer, HarmonyResult};
pub use instrument::{detect_instrument, Instrument};
pub use rhythm::{RhythmAnalyzer, RhythmFeatures};
pub use timbre::{TimbralAnalyzer, TimbralFeatures};