We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 4408602 + 32e9aae commit 01923f8Copy full SHA for 01923f8
1 file changed
source/synthDrivers/_espeak.py
@@ -26,11 +26,13 @@
26
#: This is necessary because index positions are given as ms since the start of the utterance.
27
_numBytesPushed = 0
28
29
-#Parameter bounds
30
-minRate=80
31
-maxRate=450
32
-minPitch=0
33
-maxPitch=99
+# Parameter bounds
+# maxRate set to 449 to avoid triggering sonic at rate = 100% when rate boost is off.
+# See https://github.com/espeak-ng/espeak-ng/issues/131
+minRate = 80
+maxRate = 449
34
+minPitch = 0
35
+maxPitch = 99
36
37
#event types
38
espeakEVENT_LIST_TERMINATED=0
0 commit comments