From 2b0895f26fc516b99b1d016c865b82deb2da89d3 Mon Sep 17 00:00:00 2001 From: Kulin Soni <93784469+Kulin-Soni@users.noreply.github.com> Date: Sun, 8 Mar 2026 15:35:00 +0530 Subject: [PATCH] Removed custom_output_names from the separate file call. Removed custom_output_names from _separate_file call inside the _process_with_chunking method. This prevents the processed chunks from getting the same custom name, and rather have the `chunk_N` naming. --- audio_separator/separator/separator.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/audio_separator/separator/separator.py b/audio_separator/separator/separator.py index 9a8e42f..574166e 100644 --- a/audio_separator/separator/separator.py +++ b/audio_separator/separator/separator.py @@ -962,7 +962,7 @@ def _process_with_chunking(self, audio_file_path, custom_output_names=None): self.model_instance.output_dir = temp_dir try: - output_files = self._separate_file(chunk_path, custom_output_names) + output_files = self._separate_file(chunk_path) # Dynamically group chunks by stem name for stem_path in output_files: