Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

So I found this code:

#!/usr/bin/python

import sys      #for cmd line argv
import time     #for delay
import pygst        #for playing mp3 stream
import gst      # " "

#take command line args as the input string
input_string = sys.argv
#remove the program name from the argv list
input_string.pop(0)

#convert to google friendly url (with + replacing spaces)
tts_string = '+'.join(input_string)

print tts_string

#use string in combination with the translate url as the stream to be played
music_stream_uri = 'http://translate.google.com/translate_tts?q=' + tts_string
player = gst.element_factory_make("playbin", "player")
player.set_property('uri', music_stream_uri)
player.set_state(gst.STATE_PLAYING)

#requires a delay, if the py process closes before the mp3 has finished it will be cut off.
time.sleep(12)

Wich is a great example of usage of the Google's "Text to Speech" Feature available in Google Translate using Python, the problem is, it only can "speak" in English! passing a text in spanish (for example) makes the TTS feature to speak "spanglish" while in the browser the TTS Feature (with an identical URL format compared to the one generated in this example) can ACTUALLY speak in spanish or any other language you want... I tried to change the url giving the program a language code using this url:

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

(For spanish recognition)

But the result was the same, Spanglish... Any ideas of Why this is happening and How to make it "speak" in as many languages as the web tool? (or at least in other one plus english), hehe

Thanks!

share|improve this question
I have tried the same, but have not got any sound output. Can anyone tell me what are the requirements? – Manab Chetia Apr 7 at 9:39

1 Answer

up vote 5 down vote accepted

Don't use tl=es_MX, just use tl=es.

Por ejemplo: http://translate.google.com/translate_tts?tl=es&q=que+hora+es

share|improve this answer
Didn't Work... The program just doesn't outputs any audio using that URL – Jmlevick Jan 29 '12 at 8:18
Correction: it SOMETIMES outputs audio and sometimes doesn't with that type of URL, (most of the times doesn't) – Jmlevick Jan 29 '12 at 8:23
1  
Oh no! sorry, it was a problem with my internet connection XD, your idea worked flawlessly!! ;) – Jmlevick Jan 29 '12 at 8:34

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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