stratum-dsp 1.0.0

Professional-grade audio analysis engine for DJ applications: BPM detection, key detection, and beat tracking
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Feature extraction modules
//!
//! This module contains all feature extraction algorithms:
//! - Onset detection (4 methods + consensus)
//! - Period estimation (BPM detection)
//! - Beat tracking (HMM + Bayesian)
//! - Chroma extraction
//! - Key detection

pub mod beat_tracking;
pub mod chroma;
pub mod key;
pub mod onset;
pub mod period;