- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我是语音识别领域的新手。
所以我想运行这样的代码:(原文链接:http://www.ling.helsinki.fi/~gwilcock/Tartu-2003/L7-Speech/JSAPI/index.html)
public class HelloWorld extends ResultAdapter {
static Recognizer rec;
// Receives RESULT_ACCEPTED event: print it, clean up, exit
public void resultAccepted(ResultEvent e) {
Result r = (Result)(e.getSource());
ResultToken tokens[] = r.getBestTokens();
for (int i = 0; i < tokens.length; i++)
System.out.print(tokens[i].getSpokenText() + " ");
System.out.println();
// Deallocate the recognizer and exit
rec.deallocate();
System.exit(0);
}
public static void main(String args[]) {
try {
// Create a recognizer that supports English.
rec = Central.createRecognizer(
new EngineModeDesc(Locale.ENGLISH));
// Start up the recognizer
rec.allocate();
// Load the grammar from a file, and enable it
FileReader reader = new FileReader(args[0]);
RuleGrammar gram = rec.loadJSGF(reader);
gram.setEnabled(true);
// Add the listener to get results
rec.addResultListener(new HelloWorld());
// Commit the grammar
rec.commitChanges();
// Request focus and start listening
rec.requestFocus();
rec.resume();
} catch (Exception e) {
e.printStackTrace();
}
}
}
问题是 Central.createRecognizer
返回 null。
根据 API,此方法返回 null,因为我的系统没有任何合适的语音引擎。所以我尝试了:
但是,Sphinx本身看起来像是一个软件而不是语音引擎。(我感觉我不知道语音引擎
的确切定义。我认为它是一个可以将语音传输到计算机可读的软件数据)。
我下载了 bin.zip 并解压,但我只能运行现成的示例,而不能运行引擎本身。现在,我实在找不到任何关于如何运行这个示例代码的线索。
有办法运行这个吗?或者我应该为其安装其他软件?如果是这样,请告诉我。我的操作系统是 OSX Mavericks。
附注
一个小附加问题:在原始链接中,他们创建了一个定义语法的文件。但他们没有提到文件扩展名。是“.txt”文件还是其他文件?它看起来不像“.java”或“.properties”文件。
文件内容如下:
grammar javax.speech.demo;
public <sentence> = hello world | good morning |
hello mighty computer;
最佳答案
只要按照这个guide 。 Sphinx4 不再实现 Java Speech API。
关于java - JSAPI : Central. createRecognizer 返回 null,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23321359/
我是语音识别领域的新手。 所以我想运行这样的代码:(原文链接:http://www.ling.helsinki.fi/~gwilcock/Tartu-2003/L7-Speech/JSAPI/inde
我是一名优秀的程序员,十分优秀!