Update modules/whisper/whisper_base.py
Browse files
modules/whisper/whisper_base.py
CHANGED
|
@@ -376,20 +376,13 @@ class WhisperBase(ABC):
|
|
| 376 |
total_result += f'{info["subtitle"]}'
|
| 377 |
|
| 378 |
total_time += info["time_for_task"]
|
| 379 |
-
|
| 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 |
-
|
| 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 |
-
|
| 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()
|
| 395 |
total_info += f"\nTotal processing time: {self.format_time((time_end-time_start).total_seconds())}"
|
|
|
|
| 376 |
total_result += f'{info["subtitle"]}'
|
| 377 |
|
| 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 |
if params.is_translate:
|
| 382 |
+
total_info += f'Translation:\t{info["transcription"]}\n\t⤷ Handled by OpenAI Whisper\n'
|
|
|
|
|
|
|
| 383 |
|
| 384 |
if translate_output:
|
| 385 |
+
total_info += f'Translation:\t{info["translation"]}\n\t⤷ Handled by Facebook NLLB\n'
|
|
|
|
|
|
|
| 386 |
|
| 387 |
time_end = datetime.now()
|
| 388 |
total_info += f"\nTotal processing time: {self.format_time((time_end-time_start).total_seconds())}"
|