ios – AVSpeechUtterance最大音量非常安静且速度非常快

ios – AVSpeechUtterance最大音量非常安静且速度非常快,第1张

概述我正在为我的应用程序添加语音提示并在iOS 7中测试AVSpeechUtterance,但默认语音速率非常快.最低语速更容易理解.但最大音量值1太安静了!我在iPhone 4上测试了它,音量一直在变高.某些东西一定是错的,否则它将如何可用. AVSpeechSynthesizer *synthesizer = [[AVSpeechSynthesizer alloc]init]; 我正在为我的应用程序添加语音提示并在iOS 7中测试AVSpeechUtterance,但默认语音速率非常快.最低语速更容易理解.但最大音量值1太安静了!我在iPhone 4上测试了它,音量一直在变高.某些东西一定是错的,否则它将如何可用.
AVSpeechSynthesizer *synthesizer = [[AVSpeechSynthesizer alloc]init];            Nsstring *mystring = [Nsstring stringWithFormat:@"Talk String Here %@",myObject.name];            AVSpeechUtterance *utterance = [AVSpeechUtterance speechUtteranceWithString:mystring];            [utterance setRate:AVSpeechUtteranceMinimumSpeechRate];            [utterance setVolume:1];            [synthesizer speakUtterance:utterance];
解决方法 @ tmr的帖子 here为我解决了这个问题:
[[AVAudioSession sharedInstance] setcategory:AVAudioSessioncategoryPlayAndRecord                         withOptions:AVAudioSessioncategoryOptionDefaultToSpeaker                                       error:nil];
总结

以上是内存溢出为你收集整理的ios – AVSpeechUtterance最大音量非常安静且速度非常快全部内容,希望文章能够帮你解决ios – AVSpeechUtterance最大音量非常安静且速度非常快所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1107658.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-28
下一篇 2022-05-28

发表评论

登录后才能评论

评论列表(0条)

保存