2011-01-19 11 views
2

Androidの音声テキスト機能をオフラインモードで使用することはできますか?オフラインモードでのAndroidのテキストへの音声

VoiceRecognition.javaの例では、RecognizerIntent.ACTION_RECOGNIZE_SPEECHを使用して開始し、アクティビティを実行します。

他のapkをインストールしてから動作させる必要があるのでしょうか、この目的で起動するために自分のアプリケーションを作成する必要があります。

私は長い間、この探してきたが、ここで

は、私が使用したコードです...混乱します。..このコードを実行するには

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); 

    // Inflate our UI from its XML layout description. 
    setContentView(R.layout.voice_recognition); 

    // Get display items for later interaction 
    Button speakButton = (Button) findViewById(R.id.btn_speak); 

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

    // Check to see if a recognition activity is present 
    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.btn_speak) { 
     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_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); 
} 

それは認識器を与えない存在いますそのような活動が存在しないことを意味する。これを解決するには?

+0

あなたのコードをどのデバイスでテストしていますか?どのAndroidバージョンをお使いですか? – Janusz

+0

私はエミュレータでそれを理解しようとしていました!私がGlalaxyタブに置いたとき、それは働いた...私たちがゆっくりと話すならば、それは文章を認識するものの...より良い認識のためのどんな考えでも! – amiekuser

答えて

6

私はあなたに2つの問題があると思います。まず、すべてのデバイスで認識機能を使用できるわけではありません。 Android用の最新のGoogle Voice検索をインストールして更新するようにしてください。私はそれが最新の認識装置をインストールすると信じています。 http://www.google.com/mobile/voice-actions/を参考にしてください。

ダンテ江はConverting speech to textで、this articleによれば、Google Voice Searchは実際に必要なものです。

AndroidのSDKは、直接 独自のアプリケーション-だけコピーして、このサンプルアプリケーションから へ ペーストを始めるに音声入力を統合 することが容易になります。 Androidはオープン プラットフォームであるため、 は RecognizerIntentを受信するように登録された デバイスの認識サービス 認識サービスを潜在的に利用することができます。 多くのAndroidデバイスにプレインストールされているGoogleの音声 検索アプリケーション、RecognizerIntentへ 応答 することにより、Googleの サーバ- ユーザーがタップしたときに使用したのと同じサーバーへの「お話し」ダイアログと ストリーミングオーディオを表示します 検索ウィジェットまたは音声対応 キーボードのマイクボタンをクリックします。 (音声 検索が➝設定でアプリケーションを管理➝ アプリケーションをインストールされているかどうかをチェックすることができます。)コードで

、あなたが認識活性が存在するかどうかを確認する必要があります。

// Check to see if a recognition activity is present 
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(R.string.recognizer_not_present); 
} 

第二の問題は、Androidの音声認識は、インターネット接続が必要なことである:私は私が使用した次のスニペットを持っています。認識はデバイスでは実行されず、Google Webサービスが使用されます。だから、あなたはオンラインでなければなりません。ウェブサービスに関するいくつかの情報はhttp://waxy.org/2008/11/deconstructing_google_mobiles_voice_search_on_the_iphone/にあります。

+1

オフラインの音声からテキストをJelly Beansで利用できるようになりました。 –

+0

@deepakgoelさんは、Googleのサンプルをオフライン音声からテキストにしました。私のためにそれはネクサス5のテキストに声を取っています。同じコードは、サムスン銀河s5で動作していません..私を助けることができます –

+0

@ラオスはhttp://cmusphinx.sourceforge.net/wiki/tutorialandroidを確認してください –

関連する問題