谷歌的文本转语音引擎声音?
你们中的大多数人可能都知道谷歌翻译的文本到语音合成器,因为您可以在这里以编程方式访问顺便说一句:
http://translate.google.com/translate_tts?tl=en&q=text
我的印象是它有时使用 espeak,但在主要语言中,质量比这要好得多。有人知道谷歌在使用什么,或者他们在使用什么声音吗?显然这不是正常的声音,也不是 mbrola 所说的声音。
Most of you probably know the text-to-speech synthesizer of google translate, as you can access programmatically here btw:
http://translate.google.com/translate_tts?tl=en&q=text
My impression was it's sometimes using espeak, but in the major languages, the quality is much better than that. Anybody knows what Google is using, or what voices they are using? Clearly it's not the normal and also not the mbrola espeak voices.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(6)
我会查看 Google 收购列表
(维基百科,Google 收购列表 ):
84 2010 年 12 月 3 日 Phonetic Arts 语音合成 英国 Google Voice、Google Translate [90]
I would look in the list of Google acquisitions
(Wikipedia, list of google acquisitions):
84 December 3, 2010 Phonetic Arts Speech synthesis UK Google Voice, Google Translate [90]
我用红宝石做了一个简单的包装。 https://github.com/c2h2/tts
I have made a simple wrap with ruby. https://github.com/c2h2/tts
试试这个:
Speech Util
它是免费的,但仅限英语。
Try this one:
Speech Util
It´s free, but only for English.
如果谷歌翻译使用 espeak,我会感到惊讶。首先,结果太好了,缺乏许多典型的espeak缺陷。其次,众所周知,谷歌在其语音组中使用了诸如深度网络之类的想法(请参阅 Geof Hinton 的工作以及 http://research.google.com/pubs/SpeechProcessing.html)。
I would be surprised if Google translate is using espeak. Firstly, the results are too good and lack many typical espeak flaws. Second, Google is well known to be using ideas like deep nets in their speech group (see the work by Geof Hinton and also http://research.google.com/pubs/SpeechProcessing.html).
尝试
pyttsx
:https://github.com/parente/pyttsxTry
pyttsx
: https://github.com/parente/pyttsx使用 python3 的 pyttsx3 模块。
只需使用
pip install pyttsx3
进行安装Use the pyttsx3 module for python3.
just use
pip install pyttsx3
for installing