很抱歉这个长期的问题,我已经坚持了一个月了,我想提供尽可能详细的信息......它只是一个简单库中找不到文件的例外......:)
我在variances
文件中收到了一个未找到文件的例外:
我正在尝试在后台服务中简单地实现语音识别,以便我可以检测用户何时说出hello(使用pocketsphinx)。
此方法出现问题:createSphinxDir();
这是我的服务:
@Override
public void onCreate() {
super.onCreate();
setupRecog();
}
private void setupRecog() {
String sphinxDir = createSphinxDir();
Log.v(TAG, "ABOUT TO CREATE SETUP");
if (sphinxDir != null) {
try {
Log.v(TAG, "SETTING UP! :)");
mSpeechRecognizer = defaultSetup()
.setAcousticModel(new File(sphinxDir, "en-us-ptm"))
.setDictionary(new File(sphinxDir, "hello.dict"))
.setBoolean("-allphone_ci", true) //WHAT IS THIS
.getRecognizer();
mSpeechRecognizer.addListener(this);
Log.v(TAG, "ADDED LISTENER");
if ((new File(sphinxDir + File.separator + "command.gram")).isFile()) {
mSpeechRecognizer.addKeywordSearch("hello",
new File(sphinxDir + File.separator + "command.gram"));
Log.v(TAG, "ADDED KEYWORD SEARCH! :)");
}
// Or wherever appropriate
mSpeechRecognizer.startListening("wakeup"); //Is this correct?
Log.v(TAG, "STARTED LISTENING");
} catch (IOException e) {
Log.v("ERROR", TAG);
}
}
}
String createSphinxDir() {
SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences(this);
String sphinxDir = prefs.getString("sphinx", null);
if (sphinxDir == null) {
Assets assets;
Log.v(TAG, "Assets are not synced, should sync now:");
try {
Log.v(TAG, "In try block!");
assets = new Assets(this);
File sphinxDirFile = assets.syncAssets();
Log.v(TAG, "Syncing assets...should set up listener");
if (sphinxDirFile != null) {
sphinxDir = sphinxDirFile.getAbsolutePath();
SharedPreferences.Editor editor = prefs.edit();
editor.putString("sphinx", sphinxDir);
editor.commit();
Log.v(TAG, "Set up listener");
}else{
Log.v(TAG, "sphinxDirFile is null!");
}
} catch (IOException e) { //THIS IS THE PLACE WHERE I AM GETTING THE ERROR!
e.printStackTrace();
Log.d(TAG, e.toString());
}
}
return sphinxDir;
}
我也有所有回调方法(onPartialResult,onResult等),但它们永远不会被调用。
早些时候我得到一个异常,说差异.md5文件不存在,所以我在variances
和.md5
之间放了一个空格,但现在我得到了这个错误,我不知道为什么......
请告诉我,
Ruchir
答案 0 :(得分:1)
之前我得到一个异常,说差异.md5文件不存在,所以我在差异和.md5之间放了一个空格,但现在我收到了这个错误,我不知道为什么。 ..
你不应该做这些事情,它会导致问题,而你需要遵循documentation:
在Android中使用您的应用程序发送资源文件的标准方法是将它们放在项目的assets/
目录中。但为了使它们可用于pocketsphinx文件应该有物理路径,只要它们在.apk
内,它们就没有。 pocketsphinx-android的资产类提供了一种自动将资产文件复制到目标设备外部存储的方法。 edu.cmu.pocketsphinx.Assets#syncAssets
同步资源,查看位于顶部assets.lst
的{{1}}文件中的资源。在复制之前,它匹配资产的MD5校验和以及具有相同名称的外部存储上的文件(如果存在)。如果信息不完整(外部存储器上没有文件,没有任何两个assets/
文件)或者存在哈希不匹配,它只会进行实际复制。 PocketSphinxAndroidDemo包含生成.md5
和assets.lst
文件的ant脚本,查找.md5
。
请注意,如果ant构建脚本在构建过程中无法正常运行,则资产可能不同步。确保脚本在构建期间运行。
要在应用程序中集成资产同步,请执行以下操作
将演示应用程序中的assets.xml
构建文件包含到您的应用程序中。修改app/asset.xml
构建文件以运行build.gradle
:
assets.xml