Initial commit
Browse files
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)
|