From a0c2f2a7129fa993553c075a7e3b6e3449a5d303 Mon Sep 17 00:00:00 2001 From: Mark Cotton Date: Thu, 21 Sep 2023 17:02:26 -0500 Subject: [PATCH] fix typo in settings --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index cede392..2509e68 100644 --- a/README.md +++ b/README.md @@ -28,8 +28,8 @@ config = { "log_level": "INFO", - # determines directory where videos should be stored, see formating option below - "videos_dir": "videos", + # determines directory where videos should be stored, see formating option below, don't include trailing slash + "video_dir": "videos", # Folder structure that will be created, default is to save as: # {video_dir}/{camera_device_id}/{start.year}/{start.month}/{start.day}/ @@ -37,7 +37,7 @@ config = { # {video_dir}/{start.year}/{start.month}/{start.day}/{camera_device_id}/ "path_esn_first": True, - # default is set at 4, but set it to 64 if you feel the need for speed + # default is set at 4, but we feel the need for speed "num_of_threads_in_pool": 4 } ```