aubio_source_get_duration method

int aubio_source_get_duration(
  1. Pointer<_aubio_source_t> s
)

get the duration of source object, in frames

\param s source object, created with ::new_aubio_source \return number of frames in file

Implementation

int aubio_source_get_duration(
  ffi.Pointer<_aubio_source_t> s,
) {
  return _aubio_source_get_duration(
    s,
  );
}