aubio_notes_get_silence method

double aubio_notes_get_silence(
  1. Pointer<_aubio_notes_t> o
)

get notes detection silence threshold

\param o notes detection object as returned by new_aubio_notes()

\return current silence threshold

Implementation

double aubio_notes_get_silence(
  ffi.Pointer<_aubio_notes_t> o,
) {
  return _aubio_notes_get_silence(
    o,
  );
}