rbarman commited on
Commit
a6d7026
·
1 Parent(s): bd1f851

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -43,7 +43,7 @@ uploaded_file = st.file_uploader("Choose a file", type=["wav","mp3"])
43
 
44
  if uploaded_file is not None:
45
  # Process the uploaded audio file
46
- vocals_path, accompaniment_path = process_audio(uploaded_file)
47
 
48
  # Display the output files for download
49
  st.write("Output Files:")
 
43
 
44
  if uploaded_file is not None:
45
  # Process the uploaded audio file
46
+ vocals_path, accompaniment_path = separate_audio(uploaded_file)
47
 
48
  # Display the output files for download
49
  st.write("Output Files:")