new_aubio_tempo method

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

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