oximedia-mir 0.1.8

Music Information Retrieval (MIR) system for OxiMedia
Documentation
1
2
3
4
5
6
7
8
9
//! Tempo detection and BPM estimation.

pub mod detect;
pub mod estimate;
pub mod utils;

pub use detect::TempoDetector;
pub use estimate::BpmEstimator;
pub use utils::bounded_acf_with_early_exit;