Created
February 25, 2013 11:25
-
-
Save sentenza/5029222 to your computer and use it in GitHub Desktop.
This script use google translate to speak in italian via mplayer. Example $ ./say.sh Ciao Mondo
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
say() | |
{ | |
mplayer -really-quiet -ao alsa "http://translate.google.com/translate_tts?tl=it&q=$*" | |
} | |
say $* |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment