Update modules/whisper/whisper_base.py
Browse files
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(
|
382 |
-
total_info += ("Language:").ljust(
|
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(
|
387 |
total_info += ("").ljust(8)+"⤷ 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(
|
392 |
total_info += ("").ljust(8)+"⤷ 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(16)+"\t"+str(info["input_source_file"])+"\n"
|
382 |
+
total_info += ("Language:").ljust(16)+str(info["lang"])+"\t (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(16)+"\t"+str(info["transcription"])+"\n"
|
387 |
total_info += ("").ljust(8)+"⤷ 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(16)+"\t"+str(info["translation"])+"\n"
|
392 |
total_info += ("").ljust(8)+"⤷ Handled by Facebook NLLB\n"
|
393 |
|
394 |
time_end = datetime.now()
|