3v324v23 commited on
Commit
633bedb
·
1 Parent(s): 45ac5ac

Initial commit

Browse files
Files changed (1) hide show
  1. app.py +9 -2
app.py CHANGED
@@ -1,4 +1,11 @@
1
  import streamlit as st
2
 
3
- x = st.slider('Select a value')
4
- st.write(x, 'squared is', x * x)
 
 
 
 
 
 
 
 
1
  import streamlit as st
2
 
3
+ # x = st.slider('Select a value')
4
+ # st.write(x, 'squared is', x * x)
5
+
6
+ st.title("语音水印模型")
7
+
8
+ uploaded_file = st.file_uploader("上传一个WAV文件", type=["wav"])
9
+ if uploaded_file is not None:
10
+
11
+ st.audio(uploaded_file)