Spaces:
Runtime error
Runtime error
antoniomae
commited on
Commit
•
8ff9b79
1
Parent(s):
1cdacff
Update app.py
Browse files
app.py
CHANGED
@@ -35,8 +35,8 @@ st.title(APP_NAME)
|
|
35 |
st.image(APP_LOGO, use_column_width=True)
|
36 |
st.markdown(APP_DESCRIPTION)
|
37 |
|
38 |
-
input_wav = st.file_uploader("Upload a
|
39 |
-
clone_wav = st.file_uploader("Upload a
|
40 |
|
41 |
if input_mp3 and clone_mp3:
|
42 |
progress_bar = st.progress(0)
|
|
|
35 |
st.image(APP_LOGO, use_column_width=True)
|
36 |
st.markdown(APP_DESCRIPTION)
|
37 |
|
38 |
+
input_wav = st.file_uploader("Upload a MP3 file with your voice", type=["wav"])
|
39 |
+
clone_wav = st.file_uploader("Upload a MP3 file with voice to clone", type=["wav"])
|
40 |
|
41 |
if input_mp3 and clone_mp3:
|
42 |
progress_bar = st.progress(0)
|