Answers for "how to stop speech recognition in python"

1

how to use speech recognition in python

import speech_recognition as sr
recognizer = sr.Recognizer()
microphone = sr.Microphone()
with microphone as source:
    recognizer.adjust_for_ambient_noise(source)
    audio = recognizer.listen(source)
    command = recognizer.recognize_google(audio)
    print(command)
Posted by: Guest on October-26-2021

Code answers related to "how to stop speech recognition in python"

Python Answers by Framework

Browse Popular Code Answers by Language