I just found a potential solution. The slider only goes up to a max of 350 wpm, 
but the setting is stored in:
~/Library/Preferences/com.apple.speech.voice.prefs.plist
To see it, run from terminal:
defaults read com.apple.speech.voice.prefs VoiceRateDataArray
I get something like this:
(
        (
        1835364215,
        201,
        350
    )
)
We need to change the last element in each sub-array.
Back up that file, in case this fails. Then from terminal, run:

plutil -convert json ~/Library/Preferences/com.apple.speech.voice.prefs.plist 
-o - | python -c 'import json, sys;d=json.load(sys.stdin);[x.__setitem__(-1, 
500) for x in d["VoiceRateDataArray"]];json.dump(d, sys.stdout)' | plutil 
-convert binary1 -o ~/Library/Preferences/com.apple.speech.voice.prefs.plist -

If it succeeds, reboot. Only because I'm not sure how to get things to reload 
without it.
Once done, your system speech rate should be set to 500. Change that number as 
appropriate.
To reverse this, adjust the slider in the speech preferences.

On 3/4/2014 7:45 AM, [email protected] wrote:
> Hi,
> 
> I am new to this group. I have a print disability, dyslexia, and I 
> utilize text-to-speech to read. Recently, I have been turning the speech 
> rate to the highest setting and I would like it to be even faster. I 
> have found it not common for someone with dyslexia to request really 
> high speech rates, but I have read people using voiceover may user 
> faster speech rates. Does anyone know of a way to increase the 
> text-to-speech rate without needing to use voiceover? I do not need a 
> screen reader, but I do need text to be spoken. I didn't read much (just 
> enough to get by) until I got a Mac with the text-to-speech built. I 
> love this future, but just wish the speech rate would go faster as I 
> have a lot of school work I need to read. Any suggestions?
> 
> Thank you,
> Sarah
> 
> -- 
> You received this message because you are subscribed to the Google 
> Groups "MacVisionaries" group.
> To unsubscribe from this group and stop receiving emails from it, send 
> an email to [email protected].
> To post to this group, send email to [email protected].
> Visit this group at http://groups.google.com/group/macvisionaries.
> For more options, visit https://groups.google.com/groups/opt_out.

-- 
You received this message because you are subscribed to the Google Groups 
"MacVisionaries" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at http://groups.google.com/group/macvisionaries.
For more options, visit https://groups.google.com/groups/opt_out.

Reply via email to