我正在使用 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;
}
}
这是我第一次这样做的时候。但是,如果用户第二次单击录制按钮,则会引发错误“无法启动麦克风”。我在这里做错了什么。为什么我第二次无法获取麦克风