Skip to content

Instantly share code, notes, and snippets.

@piksel
Created August 9, 2013 08:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save piksel/6191924 to your computer and use it in GitHub Desktop.
Save piksel/6191924 to your computer and use it in GitHub Desktop.
Say stuff in swedish, using googles speech engine
#!/bin/bash
URL_PRE="https://translate.google.com/translate_tts?tl=sv&ie=UTF-8&q="
USER_AGENT="Mozilla/5.0 (X11; Ubuntu; Linux i686; rv:22.0) Gecko/20100101 Firefox/22.0"
wget -q -U "$USER_AGENT" -O - "$URL_PRE$@$URL_POST" | mpg123 -q - &
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment