File size: 257 Bytes
45ac5ac
 
633bedb
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
import streamlit as st

# x = st.slider('Select a value')
# st.write(x, 'squared is', x * x)

st.title("语音水印模型")

uploaded_file = st.file_uploader("上传一个WAV文件", type=["wav"])
if uploaded_file is not None:

    st.audio(uploaded_file)