aubio_tempo_set_threshold method

int aubio_tempo_set_threshold(
  1. Pointer<aubio_tempo_t> o,
  2. double threshold
)

set tempo detection peak picking threshold

\param o beat tracking object \param threshold new threshold

\return 0 if successful, non-zero otherwise

Implementation

int aubio_tempo_set_threshold(
  ffi.Pointer<aubio_tempo_t> o,
  double threshold,
) {
  return _aubio_tempo_set_threshold(
    o,
    threshold,
  );
}