speech-recognition

How to fix None Exception iterating requests! issue

余生长醉 提交于 2021-02-11 03:36:24
问题 I'm fresh in speech recognition topic I'm working on project in which I can find some usecases for Pepper bot in the workspace. Playing with Pepper we figured out some issues with it's speech recognition ability. I've found that we can try to connect it with external engines for that and I picked up DialogFlow from GCP. Also because I've found some integrations with this service. I've used code from this project import traceback from naoqi import qi # [START dialogflow_detect_intent_streaming

How to fix None Exception iterating requests! issue

。_饼干妹妹 提交于 2021-02-11 03:36:05
问题 I'm fresh in speech recognition topic I'm working on project in which I can find some usecases for Pepper bot in the workspace. Playing with Pepper we figured out some issues with it's speech recognition ability. I've found that we can try to connect it with external engines for that and I picked up DialogFlow from GCP. Also because I've found some integrations with this service. I've used code from this project import traceback from naoqi import qi # [START dialogflow_detect_intent_streaming

speech recognition python stopped in listen

半世苍凉 提交于 2021-02-10 20:52:28
问题 I am running the following code in Python 2.7 with pyAudio installed. I use this tutorial. import speech_recognition as sr r = sr.Recognizer() with sr.Microphone() as source: print("Speak:") audio = r.listen(source) try: print("You said " + r.recognize_google(audio)) except sr.UnknownValueError: print("Could not understand audio") except sr.RequestError as e: print("Could not request results; {0}".format(e)) python stopped in row "audio = r.listen(source)" 回答1: I am not 100% sure but I think

speech recognition python stopped in listen

荒凉一梦 提交于 2021-02-10 20:51:41
问题 I am running the following code in Python 2.7 with pyAudio installed. I use this tutorial. import speech_recognition as sr r = sr.Recognizer() with sr.Microphone() as source: print("Speak:") audio = r.listen(source) try: print("You said " + r.recognize_google(audio)) except sr.UnknownValueError: print("Could not understand audio") except sr.RequestError as e: print("Could not request results; {0}".format(e)) python stopped in row "audio = r.listen(source)" 回答1: I am not 100% sure but I think

speech recognition python stopped in listen

混江龙づ霸主 提交于 2021-02-10 20:51:07
问题 I am running the following code in Python 2.7 with pyAudio installed. I use this tutorial. import speech_recognition as sr r = sr.Recognizer() with sr.Microphone() as source: print("Speak:") audio = r.listen(source) try: print("You said " + r.recognize_google(audio)) except sr.UnknownValueError: print("Could not understand audio") except sr.RequestError as e: print("Could not request results; {0}".format(e)) python stopped in row "audio = r.listen(source)" 回答1: I am not 100% sure but I think

speech recognition python stopped in listen

邮差的信 提交于 2021-02-10 20:50:58
问题 I am running the following code in Python 2.7 with pyAudio installed. I use this tutorial. import speech_recognition as sr r = sr.Recognizer() with sr.Microphone() as source: print("Speak:") audio = r.listen(source) try: print("You said " + r.recognize_google(audio)) except sr.UnknownValueError: print("Could not understand audio") except sr.RequestError as e: print("Could not request results; {0}".format(e)) python stopped in row "audio = r.listen(source)" 回答1: I am not 100% sure but I think

Safari Speech Recognition

ε祈祈猫儿з 提交于 2021-02-10 13:15:59
问题 I have set up the Speech Recognition (speech to text) http://yjwebsoft.com/voice/ for some reason it works on chrome but not safari. But on the tutorial it meantioned that it does support Safari 回答1: Speech recognition is chrome-only feature, it does not support Safari. You can find recent state here: http://caniuse.com/#feat=speech-recognition Recently Firefox added support for speech recognition, but this feature is highly experimental, see https://developer.mozilla.org/en-US/docs/Web/API

Safari Speech Recognition

浪子不回头ぞ 提交于 2021-02-10 13:11:50
问题 I have set up the Speech Recognition (speech to text) http://yjwebsoft.com/voice/ for some reason it works on chrome but not safari. But on the tutorial it meantioned that it does support Safari 回答1: Speech recognition is chrome-only feature, it does not support Safari. You can find recent state here: http://caniuse.com/#feat=speech-recognition Recently Firefox added support for speech recognition, but this feature is highly experimental, see https://developer.mozilla.org/en-US/docs/Web/API

Safari Speech Recognition

北慕城南 提交于 2021-02-10 13:10:55
问题 I have set up the Speech Recognition (speech to text) http://yjwebsoft.com/voice/ for some reason it works on chrome but not safari. But on the tutorial it meantioned that it does support Safari 回答1: Speech recognition is chrome-only feature, it does not support Safari. You can find recent state here: http://caniuse.com/#feat=speech-recognition Recently Firefox added support for speech recognition, but this feature is highly experimental, see https://developer.mozilla.org/en-US/docs/Web/API

What's the REAL rate limit for Google's web speech api?

回眸只為那壹抹淺笑 提交于 2021-02-08 10:47:16
问题 So here we are again with the usual bullshit from Google. They claim their speech-recognition api for developers has a limit of 50 requests per day. But it is evident that there is some other per-minute or per-some-smaller-time-unit limit, because I have been trying requests without reaching 50 per day, but if they are "too close" to one another I randomly get an empty array as a result (and I'm testing with always the same sound files, identical requests). So please, SOMEBODY FROM GOOGLE (as