BISHT-1994
Results
1
comments of
BISHT-1994
`import speech_recognition as sr def speechrecognition(): r=sr.Recognizer() with sr.Microphone() as source: print('Listening.....') r.pause_threshold=1 audio=r.listen(source,0,0) try: print('Recognizing.....') query=r.recognize_google(audio,language='eng-in') return query.lower() except: return '' speechrecognition()` I use this code but getting error,...