我们可以/如何使用 iOS 语音引擎?
我想在我的应用程序中使用 iOS 语音引擎来朗读一些文本。开发人员可以使用它吗?如果可以,我们如何使用它?
I'd like to use the iOS speech engine in my app to speak some text. Is this available to developers and if it is how do we use it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
CMU Flite 库提供了非常好的文本到语音转换功能,并带有一些声音。您给它文本,它会输出一个 .wav 文件,您可以通过 AVAudioPlayer 播放该文件。
The CMU Flite libraries offer pretty good text to speech, with a few voices. You give it text and it outputs a .wav file, which you can play through AVAudioPlayer.
从 iOS 7 开始,您可以使用本机 AVSpeechSynthesizer 类。
Since iOS 7, you can use the native AVSpeechSynthesizer class.