From c89cdaaf2162e12d3f6c277e65054dfb0a893872 Mon Sep 17 00:00:00 2001 From: lassulus Date: Sat, 27 Dec 2014 22:07:57 +0100 Subject: text2speech.google: add usage --- util/bin/text2speech.google | 22 ++++++++++++++++++---- 1 file changed, 18 insertions(+), 4 deletions(-) (limited to 'util') diff --git a/util/bin/text2speech.google b/util/bin/text2speech.google index 41b4c172..b732f363 100755 --- a/util/bin/text2speech.google +++ b/util/bin/text2speech.google @@ -1,10 +1,24 @@ #!/bin/sh set -euf -tl=${TL:="en"} +TL=${TL:="en"} -text=$* +usage(){ + echo 'TL= can specifiy which language to use, default is "en"' + echo 'Example: TL="de" ./text2speech.google "whats up?" | mpv -)' + exit 0 +} -url="http://translate.google.com/translate_tts?ie=UTF-8&tl=$tl" +text2speech(){ + text=$* + url="http://translate.google.com/translate_tts?ie=UTF-8&tl=$TL" + + curl -A "Mozilla/5.0" -Ss "$url" --data-urlencode "q=$text" +} + +if [ $# -eq 0 ]; then + usage +fi + +text2speech $* -curl -A "Mozilla/5.0" -Ss "$url" --data-urlencode "q=$text" -- cgit v1.2.3