ageraustine commited on
Commit
4526437
1 Parent(s): 43b600d

accept wav uploads only

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -120,7 +120,7 @@ if st.button("Generate Audio") and genre and energy_level and description and te
120
  # Post-processing options
121
  st.header("Post-processing Options")
122
 
123
- vocal_file = st.file_uploader("Upload Vocal File", type=["mp3", "wav", "ogg", "flac", "aac"])
124
  if vocal_file:
125
  st_state.vocal_audio = vocal_file.read()
126
 
 
120
  # Post-processing options
121
  st.header("Post-processing Options")
122
 
123
+ vocal_file = st.file_uploader("Upload Vocal File", type=["wav", "wav"])
124
  if vocal_file:
125
  st_state.vocal_audio = vocal_file.read()
126