instrumental return change
Browse files
app.py
CHANGED
|
@@ -91,7 +91,7 @@ def separate_all_stems(audio_file_path: str, model_name: str):
|
|
| 91 |
drums, bass, other, vocals = output_signals
|
| 92 |
instrumental = drums + bass + other
|
| 93 |
|
| 94 |
-
return [drums, bass, vocals,
|
| 95 |
|
| 96 |
# Process Function
|
| 97 |
def process_fn(audio_file_path, model_name):
|
|
|
|
| 91 |
drums, bass, other, vocals = output_signals
|
| 92 |
instrumental = drums + bass + other
|
| 93 |
|
| 94 |
+
return [drums, bass, vocals, other]
|
| 95 |
|
| 96 |
# Process Function
|
| 97 |
def process_fn(audio_file_path, model_name):
|