首页 文章

西班牙语语音(语音)识别

提问于
浏览
1

我正在使用android的语音识别API .

我是语音识别Api的新手,我的要求是用西班牙语演讲,并从Android的语音识别API获得西班牙语的最佳匹配文本 . 所以,请!如果你有任何解决方案,请告诉我 . 提前致谢 .

1 回答

  • 2
    final Intent intent = new Intent(RecognizerIntent.ACTION_RECOGNIZE_SPEECH);
    intent.putExtra(RecognizerIntent.EXTRA_LANGUAGE, "es-ES");
    
    etc.....
    

相关问题