STFT.streaming constructor
STFT.streaming({})
Creates an STFT context intended for repeated chunked input.
Implementation
factory STFT.streaming({
required int nFft,
int? winLen,
required int hop,
StftWindow window = StftWindow.hann,
bool meanSubtract = false,
bool center = false,
}) => STFT(
nFft: nFft,
winLen: winLen,
hop: hop,
window: window,
meanSubtract: meanSubtract,
center: center,
);