Linux Lite Forums
Text2speech robotic female voice - Printable Version

+- Linux Lite Forums (https://www.linuxliteos.com/forums)
+-- Forum: Development (https://www.linuxliteos.com/forums/forumdisplay.php?fid=7)
+--- Forum: Scripting and Bash (https://www.linuxliteos.com/forums/forumdisplay.php?fid=32)
+--- Thread: Text2speech robotic female voice (/showthread.php?tid=724)



Text2speech robotic female voice - anon222 - 08-13-2014

Code:
sudo apt-get install espeak
This is one cool script , it can be used instead of login sound. It uses text2speech with customized female voice. Smile
Code:
#!/bin/sh

slp=0s
rep=0
vol=1
text='Reactor Online. Sensors Online. Weapons Online. All Systems Nominal. '

while getopts 'w:r:v:t:' OPTION
do
case $OPTION in
w) slp="$OPTARG"
;;
r) rep="$OPTARG"
;;
v) vol="$OPTARG"
;;
t) text="$OPTARG"
;;
?) printf "Usage: %s: [-w wait <$slp>] [-r repeat <$rep>] [-v vol <$vol>] [-t text <$text>] \n" $(basename $0)
exit 2
;;
esac
done

sleep $slp
echo $text | espeak --stdout -s120 -k18 -a200 -v 'en+f5' --stdin | play -v $vol -t wav - \
chorus 0.4 0.8 20 0.5 0.10 2 -t \
echo 0.9 0.8 33 0.9 \
echo 0.7 0.7 10 0.2 \
echo 0.9 0.2 55 0.5 \
gain 20 \
repeat $rep
slp-startup delay in seconds
rep-repetition
vol-volume in range from 0 to1