-2
私はインディアン(ヒンディー語やタミール語のような)言語の音声をテキストに変換するためのAndroid APIを探していますか?インディアンランゲージのためのテキストとアンドロイドのAPI
APIのサポートがない場合は、どうすれば実現できますか?
ありがとうございます!
私はインディアン(ヒンディー語やタミール語のような)言語の音声をテキストに変換するためのAndroid APIを探していますか?インディアンランゲージのためのテキストとアンドロイドのAPI
APIのサポートがない場合は、どうすれば実現できますか?
ありがとうございます!
Hindi
言語にintent.putExtra(RecognizerIntent.EXTRA_LANGUAGE, "hin-IND")
を使用してください。
これを試してみてください:ここで
import java.util.ArrayList;
import java.util.Locale;
import android.app.Activity;
import android.content.ActivityNotFoundException;
import android.content.Intent;
import android.os.Bundle;
import android.speech.RecognizerIntent;
import android.view.Menu;
import android.view.View;
import android.widget.ImageButton;
import android.widget.TextView;
import android.widget.Toast;
public class MainActivity extends Activity {
private TextView txtSpeechInput;
private ImageButton btnSpeak;
private final int REQ_CODE_SPEECH_INPUT = 100;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
txtSpeechInput = (TextView) findViewById(R.id.txtSpeechInput);
btnSpeak = (ImageButton) findViewById(R.id.btnSpeak);
btnSpeak.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
promptSpeechInput();
}
});
}
/**
* Showing google speech input dialog
* */
private void promptSpeechInput() {
Intent intent = new Intent(RecognizerIntent.ACTION_RECOGNIZE_SPEECH);
intent.putExtra(RecognizerIntent.EXTRA_LANGUAGE_MODEL,
RecognizerIntent.LANGUAGE_MODEL_FREE_FORM);
intent.putExtra(RecognizerIntent.EXTRA_LANGUAGE, "hin-IND");
try {
startActivityForResult(intent, REQ_CODE_SPEECH_INPUT);
} catch (ActivityNotFoundException a) {
Toast.makeText(getApplicationContext(),
getString(R.string.speech_not_supported),
Toast.LENGTH_SHORT).show();
}
}
/**
* Receiving speech input
* */
@Override
protected void onActivityResult(int requestCode, int resultCode, Intent data) {
super.onActivityResult(requestCode, resultCode, data);
switch (requestCode) {
case REQ_CODE_SPEECH_INPUT: {
if (resultCode == RESULT_OK && null != data) {
ArrayList<String> result = data
.getStringArrayListExtra(RecognizerIntent.EXTRA_RESULTS);
txtSpeechInput.setText(result.get(0));
}
break;
}
}
}
}
は良いtutorialです。これが役に立ちますようにお願いします〜
このプログラムはヒンディー語の音声を入力し、ヒンディー語のテキスト(英語ではありません)で出力しますか? –
@JohnsonTummalapalli私の答えを受け入れてくれてありがとう。それが役に立つと思われる場合は、あなたもアップボートを与えることを願っています。ありがとうございました:) – FAT
ヒンディー語のフォントを取得していないフォント – Ancee