Sphinx 4 中的哪个 Demo 代码更适合实时语音到文本转换?

Which Demo code in Sphinx 4 is more appropriate for Real time Speech to Text Conversion?

我正在研究 Java Sphinx4 API 以实时识别我的语音,我已经浏览了所有源文件可用的演示,但我无法确定哪个演示继续努力。

以及如何使用转录演示实时获取输入的 wav 文件并将其转换为文本。

我正在开发启用语音的模拟界面,它需要引导命令实时转换为文本。

非常感谢任何类型的帮助。

here under Configuration section. You should be able to convert TranscriberDemo.java使用下面的。

LiveSpeechRecognizer 使用麦克风作为语音源。

LiveSpeechRecognizer recognizer = new LiveSpeechRecognizer(configuration);
// Start recognition process pruning previously cached data.
recognizer.startRecognition(true);
SpeechResult result = recognizer.getResult();
// Pause recognition process. It can be resumed then with startRecognition(false).
recognizer.stopRecognition();