MusicChallenge / app.py
sahandkh1419's picture
Create app.py
5d20072 verified
raw
history blame
134 Bytes
import streamlit as st
audio_value = st.experimental_audio_input("Record a voice message")
if audio_value:
st.audio(audio_value)