Spaces:
Sleeping
Sleeping
File size: 1,424 Bytes
eaea3a6 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 |
import streamlit as st
from streamlit_webrtc import webrtc_streamer
import speech_recognition as sr
import time
def speech_to_text_microphone():
# initialize recognizer class (for recognizing the speech)
r = sr.Recognizer()
# Reading Microphone as source
# listening the speech and store in audio_text variable
with sr.Microphone() as source:
audio_text = r.listen(source)
# recoginize_() method will throw a request error if the API is unreachable, hence using exception handling
try:
# using google speech recognition
return r.recognize_google(audio_text)
except:
return ""
audio = ""
st.title("SafetyCam")
webrtc_streamer(key="video")
def live_caption():
text = ""
# Initialize recognizer and microphone objects
r = sr.Recognizer()
mic = sr.Microphone()
# Set minimum energy threshold to account for ambient noise
with mic as source:
r.adjust_for_ambient_noise(source)
# Continuously listen to microphone input and print live caption
with mic as source:
while True:
try:
audio = r.listen(source)
text = r.recognize_google(audio)
print(text)
st.write(text)
except sr.UnknownValueError:
# Handle unrecognized speech
pass
if st.button("Start Live Caption"):
live_caption()
|