Skip to content

Instantly share code, notes, and snippets.

@miloh
Created August 8, 2015 07:43
Show Gist options
  • Save miloh/f80d002ae0b71aea6e50 to your computer and use it in GitHub Desktop.
Save miloh/f80d002ae0b71aea6e50 to your computer and use it in GitHub Desktop.
#!/bin/bash
while read word;
do
wget -q -U Mozilla -O output.mp3 "http://translate.google.com/translate_tts?ie=UTF-8&tl=en&q=$word"
mplayer output.mp3 &> /dev/null
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment