Update modules/whisper/whisper_base.py
Browse files
modules/whisper/whisper_base.py
CHANGED
@@ -396,8 +396,10 @@ class WhisperBase(ABC):
|
|
396 |
|
397 |
if file_count_total > 1:
|
398 |
if file_count > 1:
|
399 |
-
total_result += f'\n'
|
400 |
-
|
|
|
|
|
401 |
|
402 |
total_time += info["time_for_task"]
|
403 |
total_result += f'{info["subtitle"]}'
|
|
|
396 |
|
397 |
if file_count_total > 1:
|
398 |
if file_count > 1:
|
399 |
+
total_result += f'\n'
|
400 |
+
temp_title = f'〣 Transcription of media file \'{info["input_source_file"]}\':\n'
|
401 |
+
temp_title += len(temp_title)*'﹉'
|
402 |
+
total_result += temp_title+'\n'
|
403 |
|
404 |
total_time += info["time_for_task"]
|
405 |
total_result += f'{info["subtitle"]}'
|