tazswe wrote:Hi Dave,
It should be nice if it would be possible to adjust the words per minute rate. I think that it’s to fast at the moment and would like to have the possibility to slow it down when you have longer and more complex announcements.
Skickat från min iPad med Tapatalk
Thanks for the suggestion. I'll add this to the list of things to take a look at the next time that I'm in the plugin code. I need to think about how best to implement such a feature. The reason: it's a bit more complicated than it may appear which will become evident in a moment. I need to figure out the best way to expose the following information in the plugin device.
As it turns out, you already have this power! Apple's embedded speech system has ways to adjust the spoken strings that can make some significant changes in the way that the speech is rendered. For your circumstance, you could try something like this (the value is in words per minute):
- Code: Select all
say "[[rate 150]]This is a sentence with seven words."
You can play with this within the announcements device settings pane or enter the text directly in Terminal with the `say` command and adjust the rate value to taste. Take small bites at the apple as these adjustments can have weird outcomes if you're not cautious. I'd guess the default rate is around 175 WPM. There are other useful codes as well. You can find references to these modifiers and an example on the
Tutorials page of the plugin wiki.