Hello guys;
I’ve been searching for TTS for Linux to make Linux able to talk like Windows. ( So my programs can talk )
I found a TTS program called Festival Lite , flite. It only comes in source code.
I was wondering if someone could compile it and make a SUSE package installer for it for Packman?
http://www.speech.cs.cmu.edu/flite/
Thank You!!
On Fri 31 Mar 2017 07:36:01 PM CDT, Albert Redditt wrote:
Hello guys;
I’ve been searching for TTS for Linux to make Linux able to talk like
Windows. ( So my programs can talk )
I found a TTS program called Festival Lite , flite. It only comes in
source code.
I was wondering if someone could compile it and make a SUSE package
installer for it for Packman?
http://www.speech.cs.cmu.edu/flite/
Thank You!!
Hi
Already built…
https://softwae.opensuse.org/package/flite
–
Cheers Malcolm °¿° SUSE Knowledge Partner (Linux Counter #276890)
openSUSE Leap 42.1|GNOME 3.16.2|4.1.38-50-default
If you find this post helpful and are logged into the web interface,
please show your appreciation and click on the star below… Thanks!
Not exactly sure how to proceed , which link do i click on ??
FROM:
https://software.opensuse.org/package/flite
[ul]
[li] [b]openSUSE Leap 42.2[/b][/li][LIST]
[li] hardware:RC-Model[/li][LIST]
[li]2.0.0[/li][li]64 Bit[/li][li]Source[/li][/ul]
1 Click Install
[li] network:telephony[/li][ul]
[li]2.0.0[/li][li]32 Bit[/li][li]64 Bit[/li][li]Source[/li][/ul]
1 Click Install
[li] home:Heinervdm:BGO-OD[/li][ul]
[li]2.0.0[/li][li]64 Bit[/li][li]Source[/li][/ul]
1 Click Install
[li] home:adrianSuSE[/li][ul]
[li]2.0.0[/li][li]64 Bit[/li][li]Source[/li][/ul]
1 Click Install
[li] home:vitsoft:asteris…[/li][ul]
[li]2.0.0[/li][li]64 Bit[/li][li]Source[/li][/ul]
1 Click Install
[li] home:vitsoft:asteris…[/li][ul]
[li]2.0.0[/li][li]64 Bit[/li][li]Source[/li][/ul]
1 Click Install
[li] home:vitsoft:elastix[/li][ul]
[li]2.0.0[/li][li]64 Bit[/li][li]Source[/li][/ul]
1 Click Install
[li] home:vitsoft:elasuse[/li][ul]
[li]2.0.0[/li][li]64 Bit[/li][li]Source[/li][/ul]
1 Click Install
[/LIST]
[/LIST]
Hi
Network:Telephony is probably the best one.
I clicked on several and finally got AdrianSUSE downloaded and installed…
It came from a private developers box (Adrian??)
now i just open a console and type echo "Hello There!! | flite
And it talks…
Now the question is? . How to get it to work from inside of an app? got any ideas for me to try?
I figured it out!!
From inside of FreeBASIC for Linux 64 , you just
SHELL "echo ""Hello Dave , How are you doing?"" | flite"
END
You have to use the quote marks like above to get it to work…
For speech to work with a string var you need to do the following. in your FreeBasic Linux 64 code.
dim as string text = "you need tens or better to score."
dim as string text_w_l = "you lost."
shell( "echo " & text & text_w_l & " | flite")