new_aubio_pvoc method

Pointer<aubio_pvoc_t> new_aubio_pvoc(
  1. int win_s,
  2. int hop_s
)

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,
  );
}