Flutter 语音转文本

问题描述 投票:0回答:1

目前我面临着语音转文本包的问题。新的 android (33+) 版本存在限制。我想要来自不同国家的阿拉伯语语音,并在 UI 上显示结果,但无法做到这一点,因为他们在较新版本的 Android 中删除了很多语言。该怎么办???在 Ui 中,我想以阿拉伯语显示文本。

flutter dart speech-recognition speech-to-text
1个回答
0
投票

欲了解更多详细信息,请关注此doc

   Android SDK 30 or later If you are targeting Android SDK, 
i.e. you set your targetSDKVersion to 30 or later, 
then you will need to add the following to your AndroidManifest.xml right after the permissions section.
 See the example app for the complete usage.
 <queries> 
<intent> 
<action android:name="android.speech.RecognitionService" /> 
    </intent> </queries>
© www.soinside.com 2019 - 2024. All rights reserved.