LAP-DEV commited on
Commit
47395cd
·
verified ·
1 Parent(s): f19cfb1

Update modules/whisper/whisper_base.py

Browse files
Files changed (1) hide show
  1. modules/whisper/whisper_base.py +4 -4
modules/whisper/whisper_base.py CHANGED
@@ -378,17 +378,17 @@ class WhisperBase(ABC):
378
  total_time += info["time_for_task"]
379
  #total_info += f'Input file:\t{info["input_source_file"]}\nLanguage:\t{info["lang"]} (probability {info["lang_prob"]}%)\n'
380
 
381
- total_info += ("Input file:").ljust(12)+(str("\t")).expandtabs()+str(info["input_source_file"])+"\n"
382
- total_info += ("Language:").ljust(12)+str(info["lang"])+(str("\t")).expandtabs()+" (probability "+str(info["lang_prob"])+"%)\n"
383
 
384
  if params.is_translate:
385
  #total_info += f'Translation:\t{info["transcription"]}\n\t⤷ Handled by OpenAI Whisper\n'
386
- total_info += ("Translation:").ljust(12)+(str("\t")).expandtabs()+str(info["transcription"])+"\n"
387
  total_info += ("\t").expandtabs()+"⤷ Handled by OpenAI Whisper\n"
388
 
389
  if translate_output:
390
  #total_info += f'Translation:\t{info["translation"]}\n\t⤷ Handled by Facebook NLLB\n'
391
- total_info += ("Translation:").ljust(12)+(str("\t")).expandtabs()+str(info["translation"])+"\n"
392
  total_info += ("\t").expandtabs()+"⤷ Handled by Facebook NLLB\n"
393
 
394
  time_end = datetime.now()
 
378
  total_time += info["time_for_task"]
379
  #total_info += f'Input file:\t{info["input_source_file"]}\nLanguage:\t{info["lang"]} (probability {info["lang_prob"]}%)\n'
380
 
381
+ total_info += ("Input file:").ljust(14)+(str("\t")).expandtabs()+str(info["input_source_file"])+"\n"
382
+ total_info += ("Language:").ljust(14)+str(info["lang"])+" (probability "+str(info["lang_prob"])+"%)\n"
383
 
384
  if params.is_translate:
385
  #total_info += f'Translation:\t{info["transcription"]}\n\t⤷ Handled by OpenAI Whisper\n'
386
+ total_info += ("Translation:").ljust(14)+(str("\t")).expandtabs()+str(info["transcription"])+"\n"
387
  total_info += ("\t").expandtabs()+"⤷ Handled by OpenAI Whisper\n"
388
 
389
  if translate_output:
390
  #total_info += f'Translation:\t{info["translation"]}\n\t⤷ Handled by Facebook NLLB\n'
391
+ total_info += ("Translation:").ljust(14)+(str("\t")).expandtabs()+str(info["translation"])+"\n"
392
  total_info += ("\t").expandtabs()+"⤷ Handled by Facebook NLLB\n"
393
 
394
  time_end = datetime.now()