Linux Lite Forums
[Solved] Text-to-speech software. - Printable Version

+- Linux Lite Forums (https://www.linuxliteos.com/forums)
+-- Forum: Software - Support (https://www.linuxliteos.com/forums/forumdisplay.php?fid=5)
+--- Forum: Installing Software (https://www.linuxliteos.com/forums/forumdisplay.php?fid=18)
+--- Thread: [Solved] Text-to-speech software. (/showthread.php?tid=824)



[Solved] Text-to-speech software. - Alex - 09-10-2014

I want to install some TTS program for Linux. After a search I found this YouTube video:

https://www.youtube.com/watch?v=h2VbcoCw_oM

So I followed the instructions and installed both Festival and Xsel then I followed his entries into the command line, but somehow his results differed from mine:

[Image: image-57D1_540FB77B.jpg]

I am not sure what I did wrong...

All i wanted was a TTS GUI interface...can anyone help?

THanks

Smile


Re: Text-to-speech software. - shengchieh - 09-10-2014

cat <<eof > talk.sh  not cat <<eof >> talk.sh

eof = end of file
You are seeing > instead of $ before the chmod command.  This means you didn't end the file.  Hence I looked back and saw you appended to talk.sh instead of just create talk.sh .

Sheng-Chieh



Re: Text-to-speech software. - Alex - 09-10-2014

Thanks heaps...I looked for ages but I could not see it. I guess that it would help heaps if I knew what I was doing! Lol

Smile


Re: Text-to-speech software. - Alex - 09-10-2014

BTW what a great web site you have! Smile


Re: Text-to-speech software. - N4RPS - 09-10-2014

He336!

A number of programs use Festival to speak text. I use a Bible program called Xiphos that will speak any verses or other text you highlight.

Having played around with Festival some myself, most of the voices I've found sound like Stephen Hawking. If anybody runs into some more natural-sounding ones, let us know...

73 DE N4RPS
Rob



Re: Text-to-speech software. - Alex - 09-10-2014

After my failed attempts at using the terminal, I went to the Lubumtu Software centre and downloaded "eSpeak speech synthesizer" . It works very well, altough it has only 2 voices, but you can adjust the speed.

You just copy the text you want read and paste it into the eSpeak window, then just press play.

Smile


Re: [Solved] Text-to-speech software. - shengchieh - 09-12-2014

You can run espeak w/o espeak window - I do it all the time.  My script file has

Code:
#!/bin/sh
#
# runs eSpeak with twice the volume and 150 wpm
#
espeak -a 200 -s 150  -f $1eSpeak.txt -w $1.wav

where $1 is a wildcard.