denoize 0.5.4

Pure-Rust audio denoiser with classical DSP and optional RNNoise
Documentation
1
2
3
4
5
6
7
use crate::denoiser::{Denoiser, DenoiserConfig};

/// Run the classical STFT/IMCRA pipeline.
pub fn process_classical(channels: &[Vec<f64>], cfg: &DenoiserConfig) -> Vec<Vec<f64>> {
    let mut den = Denoiser::new(cfg.clone());
    den.process(channels)
}