I am facing an issue with the SFSpeechRecognizer
. After few seconds of starting the application I start getting the error
Error Domain=kAFAssistantErrorDomain Code=209 "(null)"" and "Error Domain=kAFAssistantErrorDomain Code=203 "Timeout" UserInfo={NSLocalizedDescription=Timeout, NSUnderlyingError=0x170049990 {Error Domain=SiriSpeechErrorDomain Code=100 "(null)"}}
and the application stops recognization.
I am trying to endAudio()
and then again start it every 20 seconds as Apple does not allow us to recognize for more than a minute.
Any help regarding this will really be appreciated.
endAudio()
. But for continuous transcribing, I have tried to call it every minute, so that I wouldn't have to callendAudio()
, and the speech recognition still works fine. – Laliberte