Update modules/whisper/whisper_base.py
Browse files
modules/whisper/whisper_base.py
CHANGED
@@ -429,6 +429,8 @@ class WhisperBase(ABC):
|
|
429 |
result_file_path = [info['path'] for info in files_to_download.values()]
|
430 |
#total_info += f"Total processing time:\t{self.format_time((time_end-time_start).total_seconds())}"
|
431 |
|
|
|
|
|
432 |
return [gr.update(value={"data": self.transform_text_to_list(total_result)}),result_file_path,total_info]
|
433 |
#return [result_str,result_file_path,total_info]
|
434 |
|
|
|
429 |
result_file_path = [info['path'] for info in files_to_download.values()]
|
430 |
#total_info += f"Total processing time:\t{self.format_time((time_end-time_start).total_seconds())}"
|
431 |
|
432 |
+
print(files_to_download)
|
433 |
+
|
434 |
return [gr.update(value={"data": self.transform_text_to_list(total_result)}),result_file_path,total_info]
|
435 |
#return [result_str,result_file_path,total_info]
|
436 |
|