android 中的波斯语语音转文本
Persian speech to text in android
我想提高我的知识并进行合理的重组(语音到文本)。我从 google 中找到了很好的示例,但我不知道如何使用波斯语-波斯语来做到这一点?我用英语做,但波斯语呢?是否需要在我的手机 android phone 中进行一些设置?有人这样做吗?
Intent intent = new Intent(RecognizerIntent.ACTION_RECOGNIZE_SPEECH);
intent.putExtra(RecognizerIntent.EXTRA_LANGUAGE_MODEL,
RecognizerIntent.LANGUAGE_MODEL_FREE_FORM);
startActivityForResult(intent, REQUEST_CODE);
我找到了。
使用此代码:
Intent intent = new Intent(RecognizerIntent.ACTION_RECOGNIZE_SPEECH);
intent.putExtra(RecognizerIntent.EXTRA_LANGUAGE_MODEL,
RecognizerIntent.LANGUAGE_MODEL_FREE_FORM);
startActivityForResult(intent, REQUEST_CODE);
祝福!
只需在您的意图中加入新的额外内容,如下所示
intent.putExtra(RecognizerIntent.EXTRA_LANGUAGE, "fa");
我想提高我的知识并进行合理的重组(语音到文本)。我从 google 中找到了很好的示例,但我不知道如何使用波斯语-波斯语来做到这一点?我用英语做,但波斯语呢?是否需要在我的手机 android phone 中进行一些设置?有人这样做吗?
Intent intent = new Intent(RecognizerIntent.ACTION_RECOGNIZE_SPEECH);
intent.putExtra(RecognizerIntent.EXTRA_LANGUAGE_MODEL,
RecognizerIntent.LANGUAGE_MODEL_FREE_FORM);
startActivityForResult(intent, REQUEST_CODE);
我找到了。 使用此代码:
Intent intent = new Intent(RecognizerIntent.ACTION_RECOGNIZE_SPEECH);
intent.putExtra(RecognizerIntent.EXTRA_LANGUAGE_MODEL,
RecognizerIntent.LANGUAGE_MODEL_FREE_FORM);
startActivityForResult(intent, REQUEST_CODE);
祝福!
只需在您的意图中加入新的额外内容,如下所示
intent.putExtra(RecognizerIntent.EXTRA_LANGUAGE, "fa");