pmetal-vocoder 0.4.0

Neural vocoder (BigVGAN) for text-to-speech synthesis
1
2
3
4
5
6
7
8
9
10
11
12
//! Audio processing utilities for vocoder.
//!
//! This module provides MLX-native implementations of:
//! - STFT (Short-Time Fourier Transform)
//! - Mel filterbank
//! - Audio feature extraction

mod mel;
mod stft;

pub use mel::*;
pub use stft::*;