an open source speech synthesis system, an implementation of Sun's Java Speech API (Wikipedia)
Questions tagged [freetts]
75 questions
2
votes
0 answers
How to use FreeTTS in IntelliJ IDEA
I need to use FreeTTS in a Java program. It's a really small application that just speaks out a certain text that was typed in by the user. I have no idea how to get this work though... I have downloaded the .zip from the FreeTTS site (…

E. V. d. B.
- 815
- 2
- 13
- 30
2
votes
3 answers
FreeTTS unable to find any voice
I am trying to use FreeTTS, here is the code:
import com.sun.speech.freetts.Voice;
import com.sun.speech.freetts.VoiceManager;
public class FreeTTSVoice {
public static final String VOICE_ALAN = "alan";
public static final String VOICE_KEVIN =…

Haywire
- 858
- 3
- 14
- 30
2
votes
1 answer
How to write my own custom TTS engine app in android?
I have to write my own custom TTS engine so that i can use it in my Apps. Why I want to create my own TTS engine because some of the TTS engine either doesn't support required languages OR those which are supported are not free TTS engine, so I will…

piks
- 1,621
- 8
- 32
- 59
1
vote
0 answers
Freetts: projects works inside the IDE (netbeans and eclipse) but the exported jar give errors
thank you for reading this.
i m using freetts to make my program speak some text...
While inside the IDE, when i run all the programs, they work fine.(mine and all freetts example programs).
Also the runnable programs (jar) that come with the bin…

Ioannis Soultatos
- 120
- 1
- 1
- 9
1
vote
1 answer
Getting exception trying to generate 2 tts files using freetts
When I'm trying to call method textToMp3() second time, I'm getting IllegalStateException. I tried only closing the player, I tried only ending it and as you can see it still doesn't work. It always works for when I'm calling that method first time…

PietREKT
- 11
- 1
1
vote
0 answers
Java code for Text to speech in female voice
I want java code for text to speech in both male and female voice and after that I want to save that audio to wav file. I tried using this code but its only giving male voice.
Please suggest me a way to get female voice without downloading a jar…

Shifali
- 39
- 1
- 9
1
vote
0 answers
How to use Text-to-speech Festival java API?
I am trying to convert text to speech in java. I used FreeTTS but it doesnot provide recording feature or changing male voice to female voice using just maven.
I came across festival.exe. It is giving me all the features I require. But the issue is…

Savreen
- 49
- 11
1
vote
0 answers
Freetts: how to run freetts code in java using maven
Hello guys ! I'm develop an application like to Jarvis but issue is that when i paste freetts code in my application, maven throws exception but when i do as discuss in tutorial [http://moderntone.blogspot.com/2013/02/freetts-tutorial.html] then…

Ali Hassan
- 39
- 1
- 12
1
vote
0 answers
FreeTTS - Multiple voices at once
I'm currently writing a Java application (chat app) which requires text-to-speech. After looking online for a bit I found out that FreeTTS is a good option, I managed to get it work, and it currently prevents the main UI thread from being blocked as…

Paradoxis
- 4,471
- 7
- 32
- 66
1
vote
1 answer
Can I use freetts to detect a specific sound from audio input?
Can I use freetts to do something like speech to text convert?
I need to detect a specific sound from audio input from my laptop, can I do this by freetts in java?

Am1rr3zA
- 7,115
- 18
- 83
- 125
1
vote
0 answers
text to speech freetts in struts2
Hello please help I have done a text to speech java application using free tts now I'm trying to do the same thing with struts 2. I created a button in my table the idea is that when I click the button I'll invoke a struts action called pronounce…

smsm 094
- 11
- 2
1
vote
0 answers
Linux FreeTTS hangs on voice.speak
I have been trying to use FreeTTS in my program but can't seem to actually get it to speak. All initialization will work with no errors but the program freezes on voice.speak. I am developing on kali but plan to actually use the program on my pi…

Drok_
- 149
- 1
- 7
1
vote
1 answer
Building a Phonetic Dictionary with CMUSphinx for a Speech to Text System
Am trying to build a Speech to Text system for a native language, specific to a particular domain. Though of using CMUSphinx for the purpose. For an uncommon language, as I understand first you would need to build the phonetic dictionary which…

UserX
- 21
- 6
1
vote
1 answer
text to speech in java using freetts
I am using freetts jar file for text to speech.
But I need much more voices like Indian English.
There my code is:
import com.sun.speech.freetts.Voice;
import com.sun.speech.freetts.VoiceManager;
class s
{
VoiceManager freettsVM;
…

anand
- 43
- 1
- 4
1
vote
1 answer
Google Translate Voices download using C#
as the title said i was following this code posted on this post to download tts on my application folder and play it back so that it gave my application the ability to talk Arabic to Arab users, since i cant find an engine which work offline with…

Ahmed Sherif
- 103
- 10