代码之家  ›  专栏  ›  技术社区  ›  Stefan Steiger

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

  •  15
  • Stefan Steiger  · 技术社区  · 14 年前

    大多数人可能都知道Google Translate的文本到语音合成器,因为您可以在这里以编程方式访问btw:

    http://translate.google.com/translate_tts?tl=en&q=text
    

    我的印象是它有时使用espeak,但在主要语言中,它的质量比这要好得多。有人知道谷歌在用什么,或者他们在用什么声音?显然,这不是正常的,也不是姆博拉埃斯佩克的声音。

    6 回复  |  直到 7 年前
        2
  •  3
  •   c2h2    13 年前

    https://github.com/c2h2/tts

    gem install tts
    require 'tts'
    'hello world!".to_file "en"
    
        3
  •  0
  •   Luis Andrés García    12 年前
        5
  •  0
  •   alvas    9 年前

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

    $ pip install pyttsx
    $ python
    >>> import pyttsx
    >>> e = pyttsx.init()
    >>> e.say('haha hahaha haha haha hahaha')
    >>> e.runAndWait()
    
        6
  •  0
  •   Natesh bhat    7 年前

    pip install pyttsx3