new_aubio_tempo method
create tempo detection object
\param method beat tracking method, unused for now (use "default") \param buf_size length of FFT \param hop_size number of frames between two consecutive runs \param samplerate sampling rate of the signal to analyze
\return newly created ::aubio_tempo_t if successful, NULL
otherwise
Implementation
ffi.Pointer<aubio_tempo_t> new_aubio_tempo(
ffi.Pointer<char_t> method,
int buf_size,
int hop_size,
int samplerate,
) {
return _new_aubio_tempo(
method,
buf_size,
hop_size,
samplerate,
);
}