ircspeaker/speak-logs.sh

9 lines
193 B
Bash
Raw Normal View History

2018-09-28 07:54:01 +00:00
#!/bin/sh
if test $# -ne 2
then
printf "Usage: %s infile outfile\n" "$0" >&2
exit 1
fi
sh process.sh < "$1" | espeak --stdin --stdout --punct='"“”' -m | ffmpeg -i /dev/stdin -f mp3 "$2"