Archive for August, 2009

JAVA Speech Recognition

I was messing around today with speech recognition. It seemed like it was going to be pretty easy, and it was…except for the first step: Getting hold of the API!
Here is the JAR file : jsapi.jar
Import this into your IDE (typically into the “library”), then add the following lines to your code:
import javax.speech.*;
import javax.speech.recognition.*;

Below is [...]