aubio_source_get_samplerate method

int aubio_source_get_samplerate(
  1. Pointer<aubio_source_t> s
)

get samplerate of source object

\param s source object, created with ::new_aubio_source \return samplerate, in Hz

Implementation

int aubio_source_get_samplerate(
  ffi.Pointer<aubio_source_t> s,
) {
  return _aubio_source_get_samplerate(
    s,
  );
}