手机上有语音识别库吗(ios android)
Are there any library for voice recognition on mobile (ios android)
我想为聋人实现一些简单的转录器,所以我需要一个移动库(ios 和 android)来帮助我识别来自麦克风的音频并将其转换进入文本。
我不关心库自动更正单词,因为我还想识别随机单词或尖叫声。
另外,如果它可以离线工作,我会很高兴。
Android 已经有一个 API 了,看看:
http://developer.android.com/reference/android/speech/SpeechRecognizer.html
api可以离线使用,但用户需要下载离线语音识别包。
在本主题中,您将找到更多信息:
Java speech recognition API
Google 做:
public static SpeechRecognizer createSpeechRecognizer (Context context, ComponentName serviceComponent)
有一个语音识别 class(字面意思 SpeechRecognizer)可以用于此。
有一些第三方选项可用于 iOS。给定 here and also here.
我想为聋人实现一些简单的转录器,所以我需要一个移动库(ios 和 android)来帮助我识别来自麦克风的音频并将其转换进入文本。
我不关心库自动更正单词,因为我还想识别随机单词或尖叫声。
另外,如果它可以离线工作,我会很高兴。
Android 已经有一个 API 了,看看: http://developer.android.com/reference/android/speech/SpeechRecognizer.html
api可以离线使用,但用户需要下载离线语音识别包。
在本主题中,您将找到更多信息:
Java speech recognition API
Google 做:
public static SpeechRecognizer createSpeechRecognizer (Context context, ComponentName serviceComponent)
有一个语音识别 class(字面意思 SpeechRecognizer)可以用于此。
有一些第三方选项可用于 iOS。给定 here and also here.