check / app.py
Gopikanth123's picture
Update app.py
834d8bd verified
raw
history blame
1.66 kB
import streamlit as st
import streamlit.components.v1 as components
# HTML and JavaScript for Speech Recognition using webkitSpeechRecognition
speech_recognition_html = """
<html>
<body>
<button onclick="startRecognition()">Start Speech Recognition</button>
<p id="output">Speak something...</p>
<script>
var recognition = new webkitSpeechRecognition();
recognition.continuous = false; // Stops after speech input
recognition.interimResults = true;
recognition.onresult = function(event) {
var transcript = event.results[event.resultIndex][0].transcript;
document.getElementById('output').textContent = transcript;
// Send transcript back to Streamlit using postMessage
window.parent.postMessage({func: 'update_output', transcript: transcript}, '*');
};
recognition.onerror = function(event) {
console.error("Speech recognition error", event.error);
document.getElementById('output').textContent = "Error in recognition";
};
function startRecognition() {
recognition.start();
}
</script>
</body>
</html>
"""
# Streamlit UI
st.title("Speech-to-Text Demo")
st.write("Click the button below and start speaking. The recognized text will be shown here:")
# Display the HTML with the embedded speech recognition
components.html(speech_recognition_html, height=200)
# Output area where the recognized speech will be displayed
output = st.empty()
# The Streamlit component listens for the postMessage event and updates the output
st.write("Recognized Text:")
transcript = st.text_area("Transcript:", "", height=150)