From bcbacf234aa75cc1688d862ec27cc65cdaa852cb Mon Sep 17 00:00:00 2001 From: Andrew Reiter Date: Mon, 31 Jul 2023 10:39:02 -0400 Subject: [PATCH] Switch to 24h time --- frigate/record/export.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frigate/record/export.py b/frigate/record/export.py index ac7c1663d..2a97d83f2 100644 --- a/frigate/record/export.py +++ b/frigate/record/export.py @@ -42,7 +42,7 @@ class RecordingExporter(threading.Thread): def get_datetime_from_timestamp(self, timestamp: int) -> str: """Convenience fun to get a simple date time from timestamp.""" - return datetime.datetime.fromtimestamp(timestamp).strftime("%Y_%m_%d_%I:%M%p") + return datetime.datetime.fromtimestamp(timestamp).strftime("%Y_%m_%d_%H:%M") def run(self) -> None: logger.debug(