2
0
mirror of https://github.com/fhem/fhem-mirror.git synced 2025-04-05 17:48:44 +00:00
rudolfkoenig bf01617314 Readme update and the additions from Martin
git-svn-id: https://svn.fhem.de/fhem/trunk@286 2b470e98-0d58-463d-a4d8-8e2adae1ed80
2008-12-12 11:06:36 +00:00

13 lines
432 B
Bash
Executable File

#!/bin/bash
if [ $# = 0 ]; then
echo "Usage: `basename $0` -f [filename]"
echo " `basename $0` -s \"Text\""
exit 1;
elif [ $1 = -f ]; then
/usr/share/txt2pho/txt2pho -i $2 -f | /usr/bin/mbrola /usr/share/mbrola/de7/de7 - - \
| /usr/bin/bplay -s 22050 -b 16 -q
elif [ $1 = -s ]; then
echo $2 | /usr/share/txt2pho/txt2pho -f | /usr/bin/mbrola /usr/share/mbrola/de7/de7 - - \
| /usr/bin/bplay -s 22050 -b 16 -q
fi