Created
October 2, 2013 04:53
-
-
Save baphillips/6789279 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* Setting these values after a speech utterance has been enqueued will have no effect. */ | |
utterance.rate = AVSpeechUtteranceMaximumSpeechRate/2; // Values are pinned between AVSpeechUtteranceMinimumSpeechRate and AVSpeechUtteranceMaximumSpeechRate. | |
utterance.pitchMultiplier = 1.5; // [0.5 - 2] Default = 1 | |
utterance.volume = 0.5; // [0-1] Default = 1 | |
utterance.preUtteranceDelay = 1; // NSTimeInterval Default is 0.0 | |
utterance.postUtteranceDelay = 1; // NSTimeInterval Default is 0.0 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment