我试图在java中使用CMU Sphinx进行语音识别,但我得到的结果不正确,我不知道为什么。
我有一个.wav文件,我的声音用英语说了一句话。
这是我在java中的代码:
Configuration configuration = new Configuration();
// Set path to acoustic model.
configuration.setAcousticModelPath("resource:/edu/cmu/sphinx/models/en-us/en-us");
// Set path to dictionary.
configuration.setDictionaryPath("resource:/edu/cmu/sphinx/models/en-us/cmudict-en-us.dict");
// Set language model.
configuration.setLanguageModelPath("resource:/edu/cmu/sphinx/models/en-us/en-us.lm.dmp");
StreamSpeechRecognizer recognizer = new StreamSpeechRecognizer(configuration);
recognizer.startRecognition(new FileInputStream("assets/voice/some_wav_file.wav"));
SpeechResult result = null;
while ((result = recognizer.getResult()) != null) {
System.out.println("~~ RESULTS: " + result.getHypothesis());
}
recognizer.stopRecognition();
}
catch(Exception e){
System.out.println("ERROR: " + e.getMessage());
}
我在Android中还有另一个代码也不起作用:
Assets assets = new Assets(context);
File assetDir = assets.syncAssets();
String prefix = assetDir.getPath();
Config c = Decoder.defaultConfig();
c.setString("-hmm", prefix + "/en-us-ptm");
c.setString("-lm", prefix + "/en-us.lm");
c.setString("-dict", prefix + "/cmudict-en-us.dict");
Decoder d = new Decoder(c);
InputStream stream = context.getResources().openRawResource(R.raw.some_wav_file);
d.startUtt();
byte[] b = new byte[4096];
try {
int nbytes;
while ((nbytes = stream.read(b)) >= 0) {
ByteBuffer bb = ByteBuffer.wrap(b, 0, nbytes);
short[] s = new short[nbytes/2];
bb.asShortBuffer().get(s);
d.processRaw(s, nbytes/2, false, false);
}
} catch (IOException e) {
Log.d("ERROR: ", "Error when reading file" + e.getMessage());
}
d.endUtt();
Log.d("TOTAL RESULT: ", d.hyp().getHypstr());
for (Segment seg : d.seg()) {
Log.d("RESULT: ", seg.getWord());
}
我使用this网站将wav文件转换为16bit,16khz,mono和little-endian(尝试了它的所有选项)。
任何想法为什么都不起作用。我使用内置的词典和习惯模型,我的英语口音并不完美(不知道是否重要)。
修改
This is my file。我记录了自己说:" 我的宝贝很可爱"这就是我期望的输出。 在纯Java代码中,我得到:" 我是年轻人"在android代码中我得到了:"的它"
答案 0 :(得分:0)
您的音频因转换而有所损坏。你应该记录到wav最初或其他一些无损格式。你的发音也远离美国英语。对于格式之间的转换,您可以使用sox而不是外部网站。你的android示例似乎是正确的,但感觉你用android解码不同的文件。您可能会检查资源中是否包含实际的文件。