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

了解更多信息: http://appinapps.com/Articles_View.aspx?t=%u0628%u0631%u0646%u0627%u0645%u0647+%u0646%u0648%u06cc%u0633%u06cc+%u067e%u06cc%u0634%u0631%u0641%u062a%u0647+%u0627%u0646%u062f%u0631%u0648%u06cc%u062f+%u062c%u0644%u0633%u0647+%u06cc%u0627%u0632%u062f%u0647%u0645&aid=118&gid=11

祝福!

只需在您的意图中加入新的额外内容,如下所示

intent.putExtra(RecognizerIntent.EXTRA_LANGUAGE, "fa");