Linux Lite 8.0 Final has been released - Click here


Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5

Text2speech robotic female voice
#1

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
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)