Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Prathamesh1420
/
Voice_trial
like
1
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
Prathamesh1420
commited on
Feb 11
Commit
1687f3a
·
verified
·
1 Parent(s):
6f31b2a
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.audio_input("Record a voice message")
4
+
5
+
if audio_value:
6
+
st.audio(audio_value)