aubio_tempo_get_bpm method

double aubio_tempo_get_bpm(
  1. Pointer<aubio_tempo_t> o
)

get current tempo

\param o beat tracking object

\return the currently observed tempo, or 0 if no consistent value is found

Implementation

double aubio_tempo_get_bpm(
  ffi.Pointer<aubio_tempo_t> o,
) {
  return _aubio_tempo_get_bpm(
    o,
  );
}