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)