aubio_pitchshift_set_transpose method

int aubio_pitchshift_set_transpose(
  1. Pointer<aubio_pitchshift_t> o,
  2. double transpose
)

set the transposition of the pitch shifting object, in semitones

\param o pitch shifting object as returned by new_aubio_pitchshift() \param transpose new pitch transposition of the pitch shifting object, expressed in semitones (should be in the range -24;+24)

\return 0 if successfull, non-zero otherwise

Implementation

int aubio_pitchshift_set_transpose(
  ffi.Pointer<aubio_pitchshift_t> o,
  double transpose,
) {
  return _aubio_pitchshift_set_transpose(
    o,
    transpose,
  );
}