LAP-DEV commited on
Commit
aa806ad
·
verified ·
1 Parent(s): 4e0fc5c

Update modules/whisper/whisper_base.py

Browse files
Files changed (1) hide show
  1. modules/whisper/whisper_base.py +2 -1
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}")