aubio_pitch_get_silence method

double aubio_pitch_get_silence(
  1. Pointer<aubio_pitch_t> o
)

set the silence threshold of the pitch detection object

\param o pitch detection object as returned by ::new_aubio_pitch()

\return level threshold under which pitch should be ignored, in dB

Implementation

double aubio_pitch_get_silence(
  ffi.Pointer<aubio_pitch_t> o,
) {
  return _aubio_pitch_get_silence(
    o,
  );
}