<< Users: OpenNMS | Home | Users: Asterisk and CTI, what’s that all about? >>

Speech Recognition with Asterisk-Java

Using the Lumenvox engine with Java

The latest snapshot of Asterisk-Java contains support for the Asterisk Speech API. This makes writing AGI script that recognize speech as easy as writing AGI scripts for DTMF input.

All you need to get started is a recent version of Asterisk 1.6 and the Lumenvox Speech Engine. For development you can buy a starter kit from Digium for 50 USD.

In your AGI script you initialize the speech engine, load and activate a grammer and are ready to recognize speech. The speechRecognize() method takes a voice prompt as its first parameter. The prompt is played to the user and the users response is recognized. The user doesn't have to wait for the prompt to finish, he can start talking right away ("barge in"). The corresponding Java code looks like this:

speechCreate();
speechLoadGrammar("digits", grammarPath);
speechActivateGrammar("digits");
SpeechRecognitionResult result = 
  speechRecognize("speech-demo/prompt", 10);
speechDeactivateGrammar("digits");

The SpeechRecognitionResult provided by Asterisk-Java contains the result and the confidence score – a value between 0 and 1000 that indicates how sure the speech engine is that the result is correct. The Java code to evaluate the result looks like this:

if (result.isSpeech())
{
    if (result.getScore() > 990)
    {
        streamFile("speech-demo/absolutely-sure");
    }
    else if (result.getScore() > 800)
    {
        streamFile("speech-demo/pretty-sure");
    }
    else
    {
        streamFile("speech-demo/not-sure");
    }

    // say what we have recognized
    sayDigits(result.getText());
}       

Finally call speechDestory to end the speech recognition session (for a real application you probably want to do this in a finally block):

speechDestroy();

Pretty easy, isn't it?

You can have a look at the SpeechDemo AGI script or download the full demo that includes the latest snapshot of Asterisk-Java, the voice prompts and the AGI script.



Re: Speech Recognition with Asterisk-Java

Has this been done with Loquendo ASR? Can it be done with the ASR on a different server? http://www.voip-info.org/wiki/view/Asterisk+cmd+MRCPSpeech

Speech Recognition with Asterisk-Java

Hi, I need to connect Asterisk with Julius tool. Julius is a speech recognition engine an I don't found any documentation for implement this in Asterisk. Someone can help me please? Thanks

Speech Recognition with Asterisk-Java

As soon as the speech recognition engine implements the Asterisk speech API it is usable through Asterisk-Java.

Add a comment Send a TrackBack