aubio_notes_set_silence method
set notes detection silence threshold
\param o notes detection object as returned by new_aubio_notes() \param silence new silence detection threshold
\return 0 on success, non-zero otherwise
Implementation
int aubio_notes_set_silence(
ffi.Pointer<aubio_notes_t> o,
double silence,
) {
return _aubio_notes_set_silence(
o,
silence,
);
}