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.

link|improve this question

71% accept rate
feedback

2 Answers

up vote 3 down vote accepted

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]

link|improve this answer
Bingo, nice find ! – Quandary Jan 20 '11 at 0:15
feedback

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

gem install tts
require 'tts'
'hello world!".to_file "en"
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.