timestretch 0.11.0

Pure Rust audio time stretching library optimized for EDM
Documentation
1
2
3
4
5
6
7
//! File I/O: WAV audio and the `.tsa` analysis container.

pub mod tsa;
pub mod wav;

pub use tsa::*;
pub use wav::*;