setSpeed method

void setSpeed(
  1. double speed
)

Sets the speech speed for V2 and V3 models.

speed is the speed multiplier (default is 1.0).

Implementation

void setSpeed(double speed) {
  int status = ailiaVoice.ailiaVoiceSetSpeed(ppAilia!.value, speed);
  throwError("ailiaVoiceSetSpeed", status);
}