truongghieu's picture
Create app.py
b887071
raw
history blame
No virus
521 Bytes
import speech_recognition as sr
def recognize_speech(audio_data):
recognizer = sr.Recognizer()
try:
text = recognizer.recognize_google(audio_data)
return f"Recognized Speech: {text}"
except sr.UnknownValueError:
return "Speech Recognition could not understand audio."
except sr.RequestError as e:
return f"Could not request results from Google Speech Recognition service; {e}"
iface = gr.Interface(fn=recognize_speech, inputs="microphone", outputs="text")
iface.launch()