oximedia-audio-analysis 0.1.2

Audio analysis tools for media including loudness, spectrum, and speech detection
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Voice analysis module.

pub mod age;
pub mod characteristics;
pub mod emotion;
pub mod gender;
pub mod speaker;

pub use age::estimate_age;
pub use characteristics::{VoiceAnalyzer, VoiceCharacteristics};
pub use emotion::{detect_emotion, Emotion};
pub use gender::{detect_gender, Gender};
pub use speaker::SpeakerIdentifier;