LAP-DEV commited on
Commit
b145141
·
verified ·
1 Parent(s): cf992f1

Update modules/whisper/whisper_base.py

Browse files
Files changed (1) hide show
  1. modules/whisper/whisper_base.py +4 -2
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
- total_result += f'Transcription of {info["input_source_file"]}:\n\n'
 
 
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"]}'