timestretch 0.7.0

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

pub mod processor;
mod transient_scheduler;

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