aubio_tempo_get_threshold method

double aubio_tempo_get_threshold(
  1. Pointer<_aubio_tempo_t> o
)

get tempo peak picking threshold

\param o tempo detection object as returned by new_aubio_tempo()

\return current tempo detection threshold

Implementation

double aubio_tempo_get_threshold(
  ffi.Pointer<_aubio_tempo_t> o,
) {
  return _aubio_tempo_get_threshold(
    o,
  );
}