audioTimeStretch static method

String audioTimeStretch(
  1. bool enable
)

Enable/Disable time stretching audio This allows playing audio at lower or higher speed without affecting the audio pitch

Implementation

static String audioTimeStretch(bool enable) {
  return enable ? '--audio-time-stretch' : '--no-audio-time-stretch';
}