Update modules/whisper/whisper_base.py
Browse files
modules/whisper/whisper_base.py
CHANGED
@@ -250,7 +250,7 @@ class WhisperBase(ABC):
|
|
250 |
output_dir=self.output_dir
|
251 |
)
|
252 |
#files_info[file_name] = {"subtitle": subtitle, "time_for_task": time_for_task, "path": file_path, "lang": file_language, "input": (file_name+file_ext)}
|
253 |
-
input_file=str((file_name+file_ext))
|
254 |
files_info[file_name] = {"subtitle": subtitle, "time_for_task": time_for_task, "path": file_path, "lang": file_language, "input": input_file}
|
255 |
|
256 |
## Add output file as txt
|
|
|
250 |
output_dir=self.output_dir
|
251 |
)
|
252 |
#files_info[file_name] = {"subtitle": subtitle, "time_for_task": time_for_task, "path": file_path, "lang": file_language, "input": (file_name+file_ext)}
|
253 |
+
input_file="test" #str((file_name+file_ext))
|
254 |
files_info[file_name] = {"subtitle": subtitle, "time_for_task": time_for_task, "path": file_path, "lang": file_language, "input": input_file}
|
255 |
|
256 |
## Add output file as txt
|