Skip to content

Commit fb3da56

Browse files
authored
Merge 50cbee1 into 4408602
2 parents 4408602 + 50cbee1 commit fb3da56

2 files changed

Lines changed: 8 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

user_docs/en/changes.t2t

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@ It can be re-enabled in NVDA's advanced settings panel. (#11554)
4242
This will improve performance for some Java applications including IntelliJ IDEA. (#13039)
4343
- Announcement of selected cells for LibreOffice Calc is more efficient and no longer results in a Calc freeze when many cells are selected. (#13232)
4444
- When running under a different user, Microsoft Edge is no longer inaccessible. (#13032)
45+
- When rate boost is off, eSpeak's rate does not drop anymore between rates 99% and 100%. (#13876)
4546
-
4647

4748

0 commit comments

Comments
 (0)