Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
sahandkh1419
/
MusicChallenge
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
sahandkh1419
commited on
Oct 15, 2024
Commit
5d20072
·
verified
·
1 Parent(s):
1155940
Create app.py
Browse files
Files changed (1)
hide
show
app.py
+6
-0
app.py
ADDED
Viewed
@@ -0,0 +1,6 @@
1
+
import streamlit as st
2
+
3
+
audio_value = st.experimental_audio_input("Record a voice message")
4
+
5
+
if audio_value:
6
+
st.audio(audio_value)