pitch property

  1. @TagNumber.new(4)
double get pitch

Fundamental-frequency multiplier, 1.0 = the voice's own pitch. Honoured only by the platform backend (Apple System TTS / Android TextToSpeech); neural voices (sherpa/Piper/Kokoro, qhexrt) ignore it, because for them pitch is voice identity rather than a dial.

Implementation

@$pb.TagNumber(4)
$core.double get pitch => $_getN(3);
  1. @TagNumber.new(4)
set pitch (double value)

Implementation

@$pb.TagNumber(4)
set pitch($core.double value) => $_setFloat(3, value);