1

我正在使用 sphinx4 暂停线程,直到说出特定的关键字。这第一次效果很好,但第二次我需要暂停线程,

recognizer.recognize() 

似乎没有运行,应用程序只是开始发送垃圾邮件“开始说话......”。

这是暂停线程的函数:

public synchronized void waitForKeyword(String in){


    if (!microphone.startRecording()) {
        System.out.println("Cannot start microphone.");
        recognizer.deallocate();
        System.exit(1);
    }


    Result result = null;

    while(true) {

        if(microphone.isRecording()) {
            System.out.println("Start speaking...\n");  
            result = recognizer.recognize();
        }else{
            microphone.startRecording();
        }

        if (result != null) {
            String resultText = result.getBestFinalResultNoFiller();
            System.out.println("You said: " + resultText + '\n');

            if(resultText.equals(in)){                      
                microphone.stopRecording();
                speak("At your service!");
                break;
            }

        }

    }


}

我做错了什么,我该如何解决这个问题?

干杯!

4

1 回答 1

2

您必须microphone.clear()在第一次使用后致电。使用 OpenJDK 为我工作。我正在开发一个演示此用例的演示应用程序,它应该包含在 Sphinx4 的下一个版本中,敬请期待。

于 2013-08-13T01:38:28.927 回答