0

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 want to know.

Kenny Hawkins
  • 27
  • 1
  • 5

1 Answers1

4

First you want your sound-input as bytestream, how to do so is explained by oracle:
http://docs.oracle.com/javase/tutorial/sound/capturing.html

Next, you write the logic and algorithms to analyze and process the byte stream.
http://en.wikipedia.org/wiki/Speech_recognition#Algorithms

Good luck.

ASA
  • 1,911
  • 3
  • 20
  • 37