From 0525038926bfc3bfc38bf2e1fd24cfd73f4ee8e4 Mon Sep 17 00:00:00 2001 From: makefu Date: Thu, 22 Aug 2013 01:51:01 +0200 Subject: add naturalvoices3.sh -> now with more evasion --- util/bin/naturalvoices3.sh | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100755 util/bin/naturalvoices3.sh (limited to 'util/bin/naturalvoices3.sh') diff --git a/util/bin/naturalvoices3.sh b/util/bin/naturalvoices3.sh new file mode 100755 index 00000000..6085e511 --- /dev/null +++ b/util/bin/naturalvoices3.sh @@ -0,0 +1,10 @@ +#!/bin/sh +text=$(echo $* | sed 's/ /+/g') +voice="klara" +base_url="http://192.20.225.36" + +TMPFILE=`mktemp` +trap "rm $TMPFILE" TERM INT EXIT + + wget $base_url$( curl -Ss -H 'Host:192.20.225.36' -H 'Origin:http://www2.research.att.com' -e "http://www2.research.att.com/~ttsweb/tts/demo.php" -A "Mozilla/5.0 (X11; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0" -d "voice=$voice" -d "txt=$text" -d "speakButton=SPEAK" -H 'Accept:text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8' $base_url/tts/cgi-bin/nph-nvttsdemo | grep HREF|sed 's/.*\(".*"\).*/\1/' |sed -e 's/"//g' ) -O $TMPFILE +aplay $TMPFILE -- cgit v1.2.3