View difference between Paste ID: wnckMrxw and cTbQE9GR
SHOW: | | - or go back to the newest paste.
1
eng2audio() {
2
# this function gets the mp3 version of one given string from google translate
3
# reference: http://stackoverflow.com/questions/9163988/download-mp3-from-google-translate-text-to-speech
4
FILENAME="${*:?Usage: Give me words to translate}"
5
FILENAME="{$FILENAME// /+}+' '"
6-
wget -q -U Mozilla -O "${FILENAME// /_}.mp3" "http://translate.google.com/translate_tts?ie=UTF-8&tl=en&q=$FILENAME"
6+
7
wget -q -U Mozilla -O "${FILENAME//+/_}.mp3" "http://translate.google.com/translate_tts?ie=UTF-8&tl=en&q=$FILENAME"
8
}