speech and speech recognition at same time in iOS
I'd like my iOS
app to use text-to-speech to read to the user some information that it receives from a server, and I'd also like to allow the user to stop such speech by a voice command. I have tried speech recognition frameworks for iOS like OpenEars
and I find the problem that it is listening and detecting the information the app itself is "saying" and it intereferes in the recognition of user's voice commands.
Has somebody dealt with this scenario in iOS
and found a solution for that? Thanks in advance
It is not a trivial thing to implement. Unfortunately iOS and others record the sound which is playing through speaker. The only choice you have is to use the headset. In that case speech recognition can continue listening for input. In Openears recognition is disabled during TTS unless headset is plugged in.
If you still want to implement this feature which is called "barge-in" you have to do the following:
It is not possible to do that without significant modification of openears sources.
Related question is Android Speech Recognition while music is playing
链接地址: http://www.djcxy.com/p/34388.html上一篇: 在没有谷歌弹出窗口的android应用程序中进行连续语音识别
下一篇: 在iOS中同时进行语音和语音识别