如何在swift中添加更改语音语音性别到iOS应用程序?我正在使用AVSpeechSynthesisvoice Class来获取语音

如何在swift中添加更改语音语音性别到iOS应用程序?我正在使用AVSpeechSynthesisvoice Class来获取语音,第1张

概述我使用AVSpeechSynthesizer& amp;创建了一个具有语音功能的应用程序.在TableView中显示来自AVSpeechSynthesisVoice:speechVoices()函数的语言列表.用户可以从TableView中选择语音语言. 我想要实现的下一件事是添加语音性别,以便用户可以在Siri app中切换默认的男性或女性声音.我不想让它变得复杂,只是寻找默认的男性或女性声音. 我使用AVSpeechSynthesizer& amp;创建了一个具有语音功能的应用程序.在tableVIEw中显示来自AVSpeechSynthesisVoice:speechVoices()函数的语言列表.用户可以从tableVIEw中选择语音语言.

我想要实现的下一件事是添加语音性别,以便用户可以在Siri app中切换默认的男性或女性声音.我不想让它变得复杂,只是寻找默认的男性或女性声音.

从speechVoices()返回的声音具有特定于每个声音的默认男声或女声.

我能改变它吗?我在应用程序设置页面上放置了一个UIPickerVIEw,用于选择男声和女声.

但是,我做了一些研究,但没有找到任何文件.似乎在最新的iOS版本之前没有这样的支持.

到目前为止,有没有人试图实现这样的功能?

//NSArray* voices = AVSpeechSynthesisVoice.speechVoices;    //voice IDentifIEr inspection reports    //com.apple.ttsbundle.Samantha-compact    //com.apple.speech.synthesis.voice    //AVSpeechUtterance *utterance = [[AVSpeechUtterance alloc] initWithString:text];    //Replace hard-coded name with any available in the List pulled from the speechVoices array    NSUInteger IDx = [AVSpeechSynthesisVoice.speechVoices indexOfObjectPassingTest:^BOol(AVSpeechSynthesisVoice * _Nonnull obj,NSUInteger IDx,BOol * _Nonnull stop) {      return [obj.IDentifIEr containsstring:@"Samantha"];    }];    if (IDx > -1) {      AVSpeechSynthesisVoice* voice = AVSpeechSynthesisVoice.speechVoices[IDx];      utterance.voice = voice;    }
总结

以上是内存溢出为你收集整理的如何在swift中添加/更改语音语音性别到iOS应用程序?我正在使用AVSpeechSynthesisvoice Class来获取语音全部内容,希望文章能够帮你解决如何在swift中添加/更改语音语音性别到iOS应用程序?我正在使用AVSpeechSynthesisvoice Class来获取语音所遇到的程序开发问题。

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

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

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

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

发表评论

登录后才能评论

评论列表(0条)

保存