new_aubio_sampler method

Pointer<aubio_sampler_t> new_aubio_sampler(
  1. int samplerate,
  2. int hop_size
)

create new sampler object

\param samplerate the sampling rate of the new sampler \param hop_size the block size of the new sampler

\return the newly created ::aubio_sampler_t

Implementation

ffi.Pointer<aubio_sampler_t> new_aubio_sampler(
  int samplerate,
  int hop_size,
) {
  return _new_aubio_sampler(
    samplerate,
    hop_size,
  );
}