我正在使用CMU sphinx库来录制声音。当我开始我的java应用程序时,我只按以下方式分配识别器和配置管理器一次:
cm = new ConfigurationManager(soundPart.class.getResource("hellongram.config.xml"));
recognizer = (Recognizer) cm.lookup("recognizer");
recognizer.allocate();
此外,我的应用程序中有一个录音按钮。当用户点击它时,我使用下面的代码来录制声音:
Microphone microphone = (Microphone)MR.sp.cm.lookup("microphone");
if (!microphone.startRecording()) {
System.out.println("Cannot start microphone.");
MR.sp.recognizer.deallocate();
System.exit(1);
}
//MR.sp.pleaseStartSpeaking.setVisible(true);
while(true){
Result result = MR.sp.recognizer.recognize();
if(result!=null){
String resultText = result.getBestFinalResultNoFiller();
MR.sp.lblYouSearched.setVisible(true);
MR.sp.lblNewLabel.setVisible(true);
MR.sp.lblNewLabel.setText(resultText);
MR.textQuery = resultText.toLowerCase();
break;
}
}
这是我第一次这样做。但是,如果用户第二次单击记录按钮,则会引发错误“无法启动麦克风”。我在这做错了什么。为什么我不能第二次获得麦克风