aboutsummaryrefslogtreecommitdiff
path: root/.local/bin/picospeaker
diff options
context:
space:
mode:
Diffstat (limited to '.local/bin/picospeaker')
-rwxr-xr-x.local/bin/picospeaker11
1 files changed, 0 insertions, 11 deletions
diff --git a/.local/bin/picospeaker b/.local/bin/picospeaker
deleted file mode 100755
index 22b0210..0000000
--- a/.local/bin/picospeaker
+++ /dev/null
@@ -1,11 +0,0 @@
-#!/bin/sh -eu
-audio=$(mktemp --suffix -picospeaker.wav)
-text=${1:-The text argument is absent.}
-
-rm -f /tmp/*-picospeaker.wav;
-
-[ "${1-}" = "echo" ] && picospeaker "${2-}" "${1-}" && exit;
-
-pico2wave -w "$audio" "$text";
-[ "${2-}" = "echo" ] && ffmpeg -y -i "$audio" -map 0 -c:v copy -af aecho=1:1:50:0.5 "$audio";
-mplayer "$audio";