diff options
-rwxr-xr-x | util/bin/naturalvoices2.sh | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/util/bin/naturalvoices2.sh b/util/bin/naturalvoices2.sh index 27c4f27e..4d8015aa 100755 --- a/util/bin/naturalvoices2.sh +++ b/util/bin/naturalvoices2.sh @@ -1,3 +1,6 @@ text=$(echo $* | sed 's/ /+/g') -mplayer http://192.20.225.36$( curl -Ss -A "Mozilla" -d "voice=klara" -d "txt=$text" -d "speakButton=SPEAK" http://192.20.225.36/tts/cgi-bin/nph-nvdemo |grep HREF|sed 's/.*\(".*"\).*/\1/' |sed -e 's/"//g') +voice="klara" +base_url="http://192.20.225.36" + +mplayer $base_url$( curl -Ss -A "Mozilla" -d "voice=$voice" -d "txt=$text" -d "speakButton=SPEAK" $base_url/tts/cgi-bin/nph-nvdemo |grep HREF|sed 's/.*\(".*"\).*/\1/' |sed -e 's/"//g') |