Mac OS X 的说话头库
是否有适用于 Mac OS X / Cocoa / Objective-C 的“会说话的头像”库?特别是那些可以简化将口语文本翻译成发音嘴型/面部表情的方法? Microsoft 将“Microsoft Agent”作为其 Text to Speech API 的一部分,Mac 是否有该功能的有力竞争对手?
Is there a "talking head" library for Mac OS X / Cocoa / Objective-C? Specifically the ones that simplify translating spoken text into visemes / facial expressions? Microsoft has "Microsoft Agent" as part of their Text to Speech API, does the Mac has a worthy competitor for this feature?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
没有什么可以生成脸部,但您可以使用 NSSpeechSynthesizerDelegate 协议 用于接收 -speechSynthesizer:willSpeakPhoneme: 消息,以便您可以将自己的作品与语音同步。
我刚刚发布了一个快速而肮脏的演示,完整的项目文件和测试嘴图像。它的目的是展示这是多么容易做到。困难的部分是艺术工作。 :-) 该项目和博客文章应该足以让任何人开始。
There is nothing to generate the face, but you can use the NSSpeechSynthesizerDelegate protocol to receive -speechSynthesizer:willSpeakPhoneme: messages so you can sync your own artwork with the speech.
I just posted a quick and dirty demo complete with project files and test mouth images. It's intended to show how easy this is to do. The hard part is the art work. :-) The project and blog post should be enough to get anybody started.