1

我正在尝试构建可以帮助我拨打联系人的应用程序,就像 Google Voice 搜索一样,但是通过使用 Google Voice 通过 RecognizerIntent 使用捷克语。

什么问题,它似乎没有浏览我的联系人列表。

假设联系人姓名是“Rebro”[或任何不属于字典的内容“例如施瓦辛格等]

无论选择哪种语言,或者如果我使用英语发音或捷克语发音名称,调用 data.getStringArrayListExtra(RecognizerIntent.EXTRA_RESULTS); 时它永远不会进入结果集中。

这甚至有可能吗?如果是,我该如何实现?非常感谢提前

编辑:添加代码...这是我在网上某处找到的代码

import android.app.Activity;
import android.content.Intent;
import android.content.pm.PackageManager;
import android.content.pm.ResolveInfo;
import android.os.Bundle;
import android.speech.RecognizerIntent;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.ArrayAdapter;
import android.widget.Button;
import android.widget.ListView; 

import java.util.ArrayList;
import java.util.List;


public class MainActivity extends Activity implements OnClickListener {

private static final int VOICE_RECOGNITION_REQUEST_CODE = 1234;

private ListView mList;

/**
 * Called with the activity is first created.
 */
@Override
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);
    Button speakButton = (Button) findViewById(R.id.button1);
    mList = (ListView) findViewById(R.id.listView1);

    PackageManager pm = getPackageManager();
    List<ResolveInfo> activities = pm.queryIntentActivities(new Intent(RecognizerIntent.ACTION_RECOGNIZE_SPEECH), 0);
    if (activities.size() != 0) {
        speakButton.setOnClickListener(this);
    } else {
        speakButton.setEnabled(false);
        speakButton.setText("Recognizer not present");
    }
}

/**
 * Handle the click on the start recognition button.
 */
public void onClick(View v) {
    if (v.getId() == R.id.button1) {
        startVoiceRecognitionActivity();
    }
}

/**
 * Fire an intent to start the speech recognition activity.
 */
private void startVoiceRecognitionActivity() {
    Intent intent = new Intent(RecognizerIntent.ACTION_RECOGNIZE_SPEECH);
   // intent.putExtra(RecognizerIntent.EXTRA_LANGUAGE_MODEL, RecognizerIntent.LANGUAGE_MODEL_FREE_FORM);
    intent.putExtra(RecognizerIntent.EXTRA_LANGUAGE_MODEL, RecognizerIntent.LANGUAGE_MODEL_WEB_SEARCH);
    intent.putExtra(RecognizerIntent.EXTRA_PROMPT, "Speech recognition demo");
    startActivityForResult(intent, VOICE_RECOGNITION_REQUEST_CODE);



}

/**
 * Handle the results from the recognition activity.
 */
@Override
protected void onActivityResult(int requestCode, int resultCode, Intent data) {
    if (requestCode == VOICE_RECOGNITION_REQUEST_CODE && resultCode == RESULT_OK) {
        // Fill the list view with the strings the recognizer thought it could have heard
        ArrayList<String> matches = data.getStringArrayListExtra(
                RecognizerIntent.EXTRA_RESULTS);



        mList.setAdapter(new ArrayAdapter<String>(this, android.R.layout.simple_list_item_1,
                matches));
    }

    super.onActivityResult(requestCode, resultCode, data);
}
}
4

2 回答 2

3

我认为 Google Voice Search 不会(也不能)通过 公开其所有功能RecognizerIntent,即它只会执行一般语音转录,而不支持语音命令(call ..., text ...)或了解您的通讯录内容。遗憾的是,RecognizerIntentAPI 不允许您指定语法或允许的单词列表。

解决方案是忽略 Google 的语音识别器并实现您自己的。看看例如Pocketsphinx。您需要有捷克声学模型,除非您想以英语方式发音名称(您可以使用 CMU Sphinx 附带的英语声学模型)。

我已经为爱沙尼亚语实现了一个基于 Pocketsphinx 的开源联系人搜索应用程序,请参阅Inimesed

于 2012-07-02T09:15:55.710 回答
0

SpeechRecongizer 是不可能的,因为它只允许大城市名称而不是任何名称。它由谷歌来相应地增强它。但你可以看到其他图书馆的pocketphinx

于 2014-05-29T11:13:34.463 回答