summaryrefslogtreecommitdiffstats
path: root/.graveyard/noise/modules/espeak
diff options
context:
space:
mode:
Diffstat (limited to '.graveyard/noise/modules/espeak')
-rwxr-xr-x.graveyard/noise/modules/espeak34
1 files changed, 34 insertions, 0 deletions
diff --git a/.graveyard/noise/modules/espeak b/.graveyard/noise/modules/espeak
new file mode 100755
index 00000000..815d9d99
--- /dev/null
+++ b/.graveyard/noise/modules/espeak
@@ -0,0 +1,34 @@
+#! /bin/sh
+
+print_var() {
+ echo "$1 = $2"
+}
+
+speak() {
+ p="${noise_pitch-100}"
+ v="${noise_lang-de}"
+ k="${noise_capital-0}"
+ a="${noise_amplitude-600}"
+ g="${noise_gap-1}"
+ if test "$debug" = true; then
+ print_var pitch $p
+ print_var lang $v
+ print_var capital $k
+ print_var amplitude $a
+ print_var gap $g
+ fi
+ if test "$verbose" = true; then
+ echo "espeak: $@"
+ fi
+ #echo "espeak -p \"$pitch\" -v \"$lang\" \"$*\"" >&2
+ (espeak --stdout -a $a -k $k -p $p -v $v -g $g | aplay)<<EOF
+$*
+EOF
+}
+
+case "$1" in
+ (--help) echo say something with espeak ;;
+ (-d|--debug) shift; debug=true speak "$@";;
+ (-v|--verbose) shift; verbose=true speak "$@";;
+ (*) speak "$@";;
+esac