3

我有一个英语单词列表。我想用语音搜索。当我说单词时显示单词列表。我阅读了Android: Speech Recognition without using google server 。我尝试了一些例子。

package com.uz.VoiceRecognizw;

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.widget.ArrayAdapter;
import android.widget.Button;
import android.widget.ListView;

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

public class MyActivity extends Activity {
    private static final int REQUEST_CODE = 1234;
    private ListView wordsList;
    /**
     * Called when the activity is first created.
     */
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.voice_recog);

        Button speakButton = (Button) findViewById(R.id.speakButton);

        wordsList = (ListView) findViewById(R.id.list);

        // Disable button if no recognition service is present
        PackageManager pm = getPackageManager();
        List<ResolveInfo> activities = pm.queryIntentActivities(
                new Intent(RecognizerIntent.ACTION_RECOGNIZE_SPEECH), 0);
        if (activities.size() == 0)
        {
            speakButton.setEnabled(false);
            speakButton.setText("Recognizer not present");
        }
    }
    public void speakButtonClicked(View v)
    {
        startVoiceRecognitionActivity();
    }
    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_PROMPT, "Voice recognition Demo...");
        startActivityForResult(intent, REQUEST_CODE);
    }
    protected void onActivityResult(int requestCode, int resultCode, Intent data)
    {
        if (requestCode == REQUEST_CODE && resultCode == RESULT_OK)
        {
            // Populate the wordsList with the String values the recognition engine thought it heard
            ArrayList<String> matches = data.getStringArrayListExtra(
                    RecognizerIntent.EXTRA_RESULTS);
            wordsList.setAdapter(new ArrayAdapter<String>(this, android.R.layout.simple_list_item_1,
                    matches));
        }
        super.onActivityResult(requestCode, resultCode, data);
    }
}

此示例适用于互联网。我想要没有互联网和谷歌服务器的搜索词。我怎样才能做到这一点。

4

3 回答 3

2

如果您使用的是 Android JellyBean(或更高版本),那么您可以下载语言包并将它们用于离线语音识别。

转到:设置->语言和输入->语音搜索->离线语音识别。下载您要使用的语言包。

于 2014-03-01T10:04:12.157 回答
2

您可以使用袖珍狮身人面像http://cmusphinx.sourceforge.net/

但是您必须熟悉语音识别领域并自己构建声学模型。您可以使用来自http://voxforge.org的免费语音语料库来构建声学模型,或者您可以从 Internet 上找到已经构建的声学模型

于 2013-08-07T06:01:53.100 回答
2

萨多,没有办法直接满足你的需求。通过您的描述,您正在寻找具有额外资源的 Offline-ASR,其中包含执行此操作的英语单词列表。部分 Voice 公司支持 Offline-ASR,您可以尝试联系他们定制资源。祝你好运。

于 2013-07-31T07:47:54.657 回答