new_aubio_pvoc method
create phase vocoder object
\param win_s size of analysis buffer (and length the FFT transform) \param hop_s step size between two consecutive analysis
Implementation
ffi.Pointer<aubio_pvoc_t> new_aubio_pvoc(
int win_s,
int hop_s,
) {
return _new_aubio_pvoc(
win_s,
hop_s,
);
}