aubio_onset_get_last_ms method

double aubio_onset_get_last_ms(
  1. Pointer<_aubio_onset_t> o
)

get the time of the latest onset detected, in milliseconds

\param o onset detection object as returned by new_aubio_onset()

\return onset detection timestamps (in milliseconds)

Implementation

double aubio_onset_get_last_ms(
  ffi.Pointer<_aubio_onset_t> o,
) {
  return _aubio_onset_get_last_ms(
    o,
  );
}