Quantcast
Channel: Active questions tagged python - Stack Overflow
Viewing all articles
Browse latest Browse all 14040

recognize_google fails with WinError 10060

$
0
0

I'm encountering a TimeoutError: [WinError 10060] while attempting to establish a connection in my Python program. This error arises when the connected party does not respond properly within a specific time frame, or when the established connection fails due to the connected host not responding. I think that recognize_google has something with it, because the program stops at this point:text = recognizer.recognize_google(audio)

Code Sample:

import speech_recognition as sr    # Initialize the recognizer    recognizer = sr.Recognizer()    # Capture audio from the microphone        with sr.Microphone() as source:            print("Speak something...")            audio = recognizer.listen(source)        try:            # Use the recognizer to convert speech to text            text = recognizer.recognize_google(audio)            print("You said:", text)        except sr.UnknownValueError:            print("Sorry, could not understand audio.")        except sr.RequestError as e:            print("Could not request results; {0}".format(e))

Error Message:

TimeoutError: [WinError 10060] A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond

Additional Context:Python Version: 3.7PyAudio: 0.2.11playsound: 1.2.2


Viewing all articles
Browse latest Browse all 14040

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>