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