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
//! Core types, window functions, and resampling utilities.

pub mod crossover;
pub mod fft;
pub mod preanalysis;
pub mod resample;
pub mod ring_buffer;
pub mod types;
pub mod window;

pub use preanalysis::*;
pub use ring_buffer::RingBuffer;
pub use types::*;
pub use window::{apply_window, apply_window_copy, generate_window, WindowType};