Update modules/whisper/whisper_base.py
Browse files
modules/whisper/whisper_base.py
CHANGED
@@ -408,7 +408,11 @@ class WhisperBase(ABC):
|
|
408 |
for file_name, info in files_info.items():
|
409 |
|
410 |
file_count += 1
|
411 |
-
|
|
|
|
|
|
|
|
|
412 |
# Add filename as column if multiple file processing
|
413 |
if process_multiple:
|
414 |
temp_lines = {info["subtitle"]}
|
|
|
408 |
for file_name, info in files_info.items():
|
409 |
|
410 |
file_count += 1
|
411 |
+
|
412 |
+
# Add blank line if multiple file processing
|
413 |
+
if file_count > 1:
|
414 |
+
total_info += f'\n'
|
415 |
+
|
416 |
# Add filename as column if multiple file processing
|
417 |
if process_multiple:
|
418 |
temp_lines = {info["subtitle"]}
|