LAP-DEV commited on
Commit
b70e87c
·
verified ·
1 Parent(s): 2f9371e

Update modules/whisper/whisper_base.py

Browse files
Files changed (1) hide show
  1. modules/whisper/whisper_base.py +3 -3
modules/whisper/whisper_base.py CHANGED
@@ -347,9 +347,9 @@ class WhisperBase(ABC):
347
  total_info += f"\nTotal processing time: {self.format_time((time_end-time_start).total_seconds())}"
348
 
349
  if params.is_translate or translate_output:
350
- total_info += "Note:"
351
- total_info += "\t①: using OpenAI Whisper\n"
352
- total_info += "\t②: using Facebook NLLB\n"
353
 
354
  result_str = total_result.rstrip("\n")
355
  result_file_path = [info['path'] for info in files_to_download.values()]
 
347
  total_info += f"\nTotal processing time: {self.format_time((time_end-time_start).total_seconds())}"
348
 
349
  if params.is_translate or translate_output:
350
+ total_info += "\n\n"
351
+ total_info += "\n①: using OpenAI Whisper"
352
+ total_info += "\n②: using Facebook NLLB"
353
 
354
  result_str = total_result.rstrip("\n")
355
  result_file_path = [info['path'] for info in files_to_download.values()]