diff options
author | makefu <github@syntax-fehler.de> | 2011-08-05 21:21:25 +0200 |
---|---|---|
committer | makefu <github@syntax-fehler.de> | 2011-08-05 21:21:25 +0200 |
commit | 9b36bf4e4de683514a2ad3a34bf1177163e369b1 (patch) | |
tree | c38bcc7609a5eb94475ddc14b7eb0554ddbd8023 /util | |
parent | 57d2b4a2fa034c9c87ff5b4c04ceaabf86b4842e (diff) | |
parent | f1cab18c7ab18f5a3324973d928eae079b57587b (diff) |
Merge branch 'master' of github.com:krebscode/painload
Diffstat (limited to 'util')
-rwxr-xr-x | util/bin/naturalvoices.att | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/util/bin/naturalvoices.att b/util/bin/naturalvoices.att new file mode 100755 index 00000000..e329694f --- /dev/null +++ b/util/bin/naturalvoices.att @@ -0,0 +1,40 @@ +#! /bin/sh +set -euf + +A=Mozilla +baseURL="http://192.20.225.36" +url="$baseURL/tts/cgi-bin/nph-talk" + +pwd="$(dirname "$(readlink -f "$0")")" + +for x in \ + "$pwd/../../submodules/github/tmpvar" \ + "$pwd/../../submodules/github/mikeal" \ + "$pwd/../../submodules/github/NV" \ + "$pwd/../../submodules/github/tautologistics" \ +; do + export NODE_PATH="`readlink -f "$x"`${NODE_PATH+:$NODE_PATH}" +done + +# ensure query is ready +(cd "$pwd/../.." && git submodule update --init) + +{ + for arg; do echo "$arg"; done | sed -rn ' + s/^--(.*=.*)/\1/p;t + s/.*/text="${text+$text }&"/p;t + ' + cat<<EOF + query() { + node "$(readlink -f "$pwd/../../submodules/github/visionmedia/query")" "\$@" + } + curl -sS -A "\${A-Mozilla}" \\ + -d "voice=\${voice-klara}" \\ + -d "txt=\$text" \\ + -d "downloadButton=DOWNLOAD" \\ + "$url" | + query 'p a' +EOF +} | sh | while read url; do + curl -sS "$baseURL$url" | aplay -q - +done |