Update modules/whisper/whisper_base.py
Browse files
modules/whisper/whisper_base.py
CHANGED
|
@@ -411,6 +411,7 @@ class WhisperBase(ABC):
|
|
| 411 |
|
| 412 |
# Add filename & info as first line
|
| 413 |
title_line = ""
|
|
|
|
| 414 |
if add_timestamp_preview: title_line += "□"
|
| 415 |
if diarize_speakers: title_line += "□"
|
| 416 |
title_line += f'Media file:\t{info["input_source_file"]}'
|
|
|
|
| 411 |
|
| 412 |
# Add filename & info as first line
|
| 413 |
title_line = ""
|
| 414 |
+
if file_count_total > 1 and file_count > 1: title_line += "■"
|
| 415 |
if add_timestamp_preview: title_line += "□"
|
| 416 |
if diarize_speakers: title_line += "□"
|
| 417 |
title_line += f'Media file:\t{info["input_source_file"]}'
|