LAP-DEV commited on
Commit
8cc75fc
·
verified ·
1 Parent(s): a04a504

Update modules/whisper/whisper_base.py

Browse files
Files changed (1) hide show
  1. modules/whisper/whisper_base.py +5 -4
modules/whisper/whisper_base.py CHANGED
@@ -421,10 +421,11 @@ class WhisperBase(ABC):
421
  title_line += "#NEWLINE#"
422
 
423
  for temp_file in files_to_download.items():
424
- print("test: ")
425
- print(temp_file[0].split("_"))
426
- if temp_file[0].split("_") == file_name:
427
- print((temp_file[1])["path"])
 
428
 
429
  total_result += title_line+(((info["subtitle"].rstrip("\n")).replace("\t","#TAB#")).replace("\n","#NEWLINE#"))
430
  total_time += info["time_for_task"]
 
421
  title_line += "#NEWLINE#"
422
 
423
  for temp_file in files_to_download.items():
424
+ print("test:")
425
+ temp1 = str(temp_file[0].split("_"))
426
+ temp2 = str((temp_file[1])["path"])
427
+ print("temp1: "+temp1)
428
+ print("temp2: "+temp2)
429
 
430
  total_result += title_line+(((info["subtitle"].rstrip("\n")).replace("\t","#TAB#")).replace("\n","#NEWLINE#"))
431
  total_time += info["time_for_task"]