gpt4 book ai didi

java - JSAPI : Central. createRecognizer 返回 null

转载 作者:行者123 更新时间:2023-12-01 13:05:09 26 4
gpt4 key购买 nike

我是语音识别领域的新手。

所以我想运行这样的代码:(原文链接: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/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com