Update app.py
Browse files
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 =
|
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:")
|