From 49dcacb2eca6f808f1f52a4faaf96f1fae24e4b5 Mon Sep 17 00:00:00 2001 From: William Hubbs Date: Thu, 5 May 2011 12:30:18 -0500 Subject: [PATCH] adjust rate offset and multiplier for espeak 1.45.04 --- espeak.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/espeak.c b/espeak.c index 5e69ac5..6c1bec5 100644 --- a/espeak.c +++ b/espeak.c @@ -34,8 +34,8 @@ char *defaultVoice = NULL; /* multipliers and offsets */ const int frequencyMultiplier = 11; const int pitchMultiplier = 11; -const int rateMultiplier = 34; -const int rateOffset = 84; +const int rateMultiplier = 41; +const int rateOffset = 80; const int volumeMultiplier = 22; volatile int stop_requested = 0;