Skip to content

Commit 01923f8

Browse files
authored
Merge 32e9aae into 4408602
2 parents 4408602 + 32e9aae commit 01923f8

1 file changed

Lines changed: 7 additions & 5 deletions

File tree

source/synthDrivers/_espeak.py

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -26,11 +26,13 @@
2626
#: This is necessary because index positions are given as ms since the start of the utterance.
2727
_numBytesPushed = 0
2828

29-
#Parameter bounds
30-
minRate=80
31-
maxRate=450
32-
minPitch=0
33-
maxPitch=99
29+
# Parameter bounds
30+
# maxRate set to 449 to avoid triggering sonic at rate = 100% when rate boost is off.
31+
# See https://github.com/espeak-ng/espeak-ng/issues/131
32+
minRate = 80
33+
maxRate = 449
34+
minPitch = 0
35+
maxPitch = 99
3436

3537
#event types
3638
espeakEVENT_LIST_TERMINATED=0

0 commit comments

Comments
 (0)