谷歌的文本转语音引擎声音?

发布于 2024-09-29 05:39:30 字数 237 浏览 3 评论 0原文

你们中的大多数人可能都知道谷歌翻译的文本到语音合成器,因为您可以在这里以编程方式访问顺便说一句:

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 技术交流群。

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

发布评论

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

评论(6

蛮可爱 2024-10-06 05:39:30

我会查看 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]

最偏执的依靠 2024-10-06 05:39:30

我用红宝石做了一个简单的包装。 https://github.com/c2h2/tts

gem install tts
require 'tts'
'hello world!".to_file "en"

I have made a simple wrap with ruby. https://github.com/c2h2/tts

gem install tts
require 'tts'
'hello world!".to_file "en"
我只土不豪 2024-10-06 05:39:30

试试这个:

Speech Util

它是免费的,但仅限英语。

Try this one:

Speech Util

It´s free, but only for English.

叫嚣ゝ 2024-10-06 05:39:30

如果谷歌翻译使用 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).

岁月染过的梦 2024-10-06 05:39:30

尝试pyttsxhttps://github.com/parente/pyttsx

$ pip install pyttsx
$ python
>>> import pyttsx
>>> e = pyttsx.init()
>>> e.say('haha hahaha haha haha hahaha')
>>> e.runAndWait()

Try pyttsx: https://github.com/parente/pyttsx

$ pip install pyttsx
$ python
>>> import pyttsx
>>> e = pyttsx.init()
>>> e.say('haha hahaha haha haha hahaha')
>>> e.runAndWait()
人间不值得 2024-10-06 05:39:30

使用 python3 的 pyttsx3 模块。

只需使用 pip install pyttsx3 进行安装

Use the pyttsx3 module for python3.

just use pip install pyttsx3 for installing

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