aubio_timestretch_get_stretch method

double aubio_timestretch_get_stretch(
  1. Pointer<aubio_timestretch_t> o
)

get the transposition of the time stretching object, in semitones

\param o time stretching object as returned by ::new_aubio_timestretch()

\return time stretching ratio of the time stretching object, in the range 0.025; 10.

Implementation

double aubio_timestretch_get_stretch(
  ffi.Pointer<aubio_timestretch_t> o,
) {
  return _aubio_timestretch_get_stretch(
    o,
  );
}