fix typo in settings

database
Mark Cotton 2023-09-21 17:02:26 -05:00
parent 58d6332748
commit a0c2f2a712
1 changed files with 3 additions and 3 deletions

View File

@ -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
}
```