Recently I using AVSpeechSynthesizer to speak text,the voice sounds so stiff,it's not at normal.As the following code:
AVSpeechSynthesizer *avSpeaker = [[AVSpeechSynthesizer alloc]init];
AVSpeechUtterance *utterance = [[AVSpeechUtterance alloc]initWithString:@"我是一名iOS开发者"];
utterance.voice = [AVSpeechSynthesisVoice voiceWithLanguage:@"zh-CN"];
utterance.volume = 10;
utterance.rate = 0.2;
utterance.pitchMultiplier = 1;
[avSpeaker speakUtterance:utterance];
How should I do to make sounds softer,or at least should be normal that,thanks.
There are different speechVoices of AVSpeechSynthesisVoice, you can use them to get a voice of your choice.Some are softer as you asked, you must try it.
But there is no way to make it softer. utterance.pitchMultiplier may help you little bit, but not at the large extend. This is the late answer but may help the others.