timestretch 0.7.0

Pure Rust audio time stretching library optimized for EDM
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! Audio analysis: transient detection, beat tracking, frequency analysis, and HPSS.

pub(crate) mod adaptive_snapshot;
pub mod beat;
pub mod comparison;
pub mod frequency;
pub mod hpss;
pub mod preanalysis;
pub mod tempogram;
pub mod transient;

pub use beat::*;
pub use comparison::*;
pub use frequency::*;
pub use preanalysis::*;
pub use tempogram::*;
pub use transient::*;