Update modules/whisper/whisper_base.py
Browse files
modules/whisper/whisper_base.py
CHANGED
@@ -442,7 +442,8 @@ class WhisperBase(ABC):
|
|
442 |
output file path
|
443 |
"""
|
444 |
if add_timestamp:
|
445 |
-
timestamp = datetime.now().strftime("%m%d%H%M%S")
|
|
|
446 |
output_path = os.path.join(output_dir, f"{file_name} - {timestamp}")
|
447 |
else:
|
448 |
output_path = os.path.join(output_dir, f"{file_name}")
|
|
|
442 |
output file path
|
443 |
"""
|
444 |
if add_timestamp:
|
445 |
+
#timestamp = datetime.now().strftime("%m%d%H%M%S")
|
446 |
+
timestamp = datetime.now().strftime("%Y%m%d %H%M%S")
|
447 |
output_path = os.path.join(output_dir, f"{file_name} - {timestamp}")
|
448 |
else:
|
449 |
output_path = os.path.join(output_dir, f"{file_name}")
|