标签:
on a brand new linux PC, e.g. ubuntu 14.04 amd64
sudo apt-get install festival -y
then try to hear some thing from your PC
echo "I am your computer." | festival --tts # or echo "I am your computer." | festival --tts --pipe
you will hear something out.
Now replace the voice files, a better one.
Tutorial from https://www.youtube.com/watch?v=4eJTDpAeBSk
commands including:
apt-get install festival sudo su cd /usr/share/festival/voices/english/ wget -c http://www.speech.cs.cmu.edu/cmu_arctic/packed/cmu_us_clb_arctic-0.95-release.tar.bz2 tar jxf cmu_us_clb_arctic-0.95-release.tar.bz2 ln -s cmu_us_clb_arctic cmu_us_clb_arctic_clunits
echo "(set! voice_default ‘voice_cmu_us_clb_arctic_clunits)" >> /etc/festival.scm
Then go to command line
$~ festival festival> (SayText "Hello world")
You will hear something different, a female voice would come out.
echo "Hello I am Lily. " > /tmp/one.txt text2wave < /tmp/one.txt > /tmp/voice.wav mplayer /tmp/voice.wav
Your voice file has been saved.
Happy hacking!
标签:
原文地址:http://www.cnblogs.com/spaceship9/p/4884175.html