Questions tagged [javax.speech]

4 questions
5
votes
2 answers

speech recognition in java

I want to use speech recognition in my project and I found this code but when I run it I get an error which is: run: java.lang.NullPointerException at newpackage.HelloWorld.main(HelloWorld.java:55) Please could one of you help me in this…
Asmaa
3
votes
0 answers

How to convert bangla text to speech in java?

I can convert English text to speech in java. source code: import java.beans.PropertyVetoException; import java.util.Locale; import javax.speech.AudioException; import javax.speech.Central; import javax.speech.EngineException; import…
Animesh Kumar Paul
  • 2,241
  • 4
  • 26
  • 37
0
votes
2 answers

ClassNotFoundException: javax.speech.EngineModeDesc

The following is the code I'm writing to implement Text to Speech in java using freeTTS and mbrola. I have added all jars of freeTTS to my classpath. import java.applet.*; import java.awt.*; import java.awt.event.ActionEvent; import…
SaiCharan
  • 61
  • 4
  • 15
0
votes
1 answer

How to make a Speech API with Java

I would like to know the steps in making a java speech recognizer/API WITHOUT using sphinx or anything else. I want to build from the ground up!!! Also a Text to speech from the ground up. 100% my own. I know it's going to be a lot of work. I just…