Voice_trial / app.py
Prathamesh1420's picture
Create app.py
1687f3a verified
raw
history blame contribute delete
121 Bytes
import streamlit as st
audio_value = st.audio_input("Record a voice message")
if audio_value:
st.audio(audio_value)