aubio_timestretch_set_transpose method

int aubio_timestretch_set_transpose(
  1. Pointer<aubio_timestretch_t> o,
  2. double transpose
)

set the transposition of the time stretching object, in semitones

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

\param transpose new pitch transposition of the time stretching object, expressed in semitones (should be in the range -24;+24)

\return 0 if successfull, non-zero otherwise

Implementation

int aubio_timestretch_set_transpose(
  ffi.Pointer<aubio_timestretch_t> o,
  double transpose,
) {
  return _aubio_timestretch_set_transpose(
    o,
    transpose,
  );
}