antoniomae commited on
Commit
979ec62
1 Parent(s): e19420d

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -3
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 WAV file with your voice", type=["wav"])
39
- clone_wav = st.file_uploader("Upload a WAV file with voice to clone", type=["wav"])
40
 
41
  if input_wav and clone_wav:
42
  progress_bar = st.progress(0)
@@ -69,4 +69,4 @@ if input_wav and clone_wav:
69
 
70
  st.audio(audio_bytes, format='audio/wav')
71
 
72
- st.download_button('Download WAV', data=audio_bytes, file_name='output.wav')
 
35
  st.image(APP_LOGO, use_column_width=True)
36
  st.markdown(APP_DESCRIPTION)
37
 
38
+ input_wav = st.file_uploader("Upload a WAV file with your voice", type=["mp3"])
39
+ clone_wav = st.file_uploader("Upload a WAV file with voice to clone", type=["mp3"])
40
 
41
  if input_wav and clone_wav:
42
  progress_bar = st.progress(0)
 
69
 
70
  st.audio(audio_bytes, format='audio/wav')
71
 
72
+ st.download_button('Download MP3', data=audio_bytes, file_name='output.wav')