Speech2speech / src /streamlit_app.py
Rajputsiddharth's picture
Update src/streamlit_app.py
b63d6fc verified
Raw
History Blame Contribute Delete
309 Bytes
import streamlit as st
st.title("Speech to Speech Converter")
audio_file = st.file_uploader("Upload a .wav file", type=["mp3", "wav", "m4a"])
if audio_file:
st.subheader("Uploaded Audio")
st.audio(audio_file, format="audio/wav")
# Simulate processing
st.info("Processing audio message...")