timestretch 0.5.0

Pure Rust audio time stretching library optimized for EDM
Documentation
1
2
3
4
5
6
7
8
//! Streaming (chunked) audio processing for real-time use.

pub mod processor;
mod transient_scheduler;

pub use processor::{
    StreamLatencyReport, StreamPitchQuality, StreamProcessor, TransientResetStats,
};