aubio_pitch_set_silence method

int aubio_pitch_set_silence(
  1. Pointer<aubio_pitch_t> o,
  2. double silence
)

set the silence threshold of the pitch detection object

\param o pitch detection object as returned by new_aubio_pitch() \param silence level threshold under which pitch should be ignored, in dB

\return 0 if successfull, non-zero otherwise

Implementation

int aubio_pitch_set_silence(
  ffi.Pointer<aubio_pitch_t> o,
  double silence,
) {
  return _aubio_pitch_set_silence(
    o,
    silence,
  );
}