iOS 中的语音输出

发布于 2024-09-15 16:05:36 字数 32 浏览 4 评论 0原文

是否可以访问用于辅助功能的 iOS 语音合成功能?

Is it possible to access the speech synthesis feature of the iOS that is used for accessibility?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

GRAY°灰色天空 2024-09-22 16:05:36

以下是在 iOS 7 上使用 AVSpeechSynthesizer 的示例:

AVSpeechSynthesizer *synthesizer = [[AVSpeechSynthesizer alloc]init];
AVSpeechUtterance *utterance = [AVSpeechUtterance speechUtteranceWithString:@"Hey Guys"];
[synthesizer speakUtterance:utterance];

要更改语音,请使用:

utterance.voice = [AVSpeechSynthesisVoice voiceWithLanguage:@"de-DE"];

要获取所有语音的列表:

NSLog(@"voices %@", [AVSpeechSynthesisVoice speechVoices]);

Here is an example using AVSpeechSynthesizer on iOS 7:

AVSpeechSynthesizer *synthesizer = [[AVSpeechSynthesizer alloc]init];
AVSpeechUtterance *utterance = [AVSpeechUtterance speechUtteranceWithString:@"Hey Guys"];
[synthesizer speakUtterance:utterance];

To change the voice use:

utterance.voice = [AVSpeechSynthesisVoice voiceWithLanguage:@"de-DE"];

To get a list of all voices:

NSLog(@"voices %@", [AVSpeechSynthesisVoice speechVoices]);
铁轨上的流浪者 2024-09-22 16:05:36

也许您会发现这个这个问题很有帮助。 FLITE 还将语音合成功能iOS。

May be you can find this SO question helpful. FLITE also brings speech synthesis to iOS.

强辩 2024-09-22 16:05:36

现在,从 ios7 开始,您可以使用内置的 AVSpeechSynthesizer

Now, since ios7 you can use the built in AVSpeechSynthesizer

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文