new_aubio_notes method

Pointer<aubio_notes_t> new_aubio_notes(
  1. Pointer<char_t> method,
  2. int buf_size,
  3. int hop_size,
  4. int samplerate,
)

create notes detection object

\param method notes detection type as specified in specdesc.h \param buf_size buffer size for phase vocoder \param hop_size hop size for phase vocoder \param samplerate sampling rate of the input signal

\return newly created ::aubio_notes_t

Implementation

ffi.Pointer<aubio_notes_t> new_aubio_notes(
  ffi.Pointer<char_t> method,
  int buf_size,
  int hop_size,
  int samplerate,
) {
  return _new_aubio_notes(
    method,
    buf_size,
    hop_size,
    samplerate,
  );
}