Disabling motion detection #230
Unanswered
JasonVarney
asked this question in
Q&A
Replies: 1 comment 1 reply
-
Thanks for checking out Viseron! Setting You will still see it setting up in the logs, but the no detection will ever run. |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Great job with this project, very much appreciated.
Is there an elegant way to completely disable all motion detection, at the moment I'm using a rather ugly hack of just setting the interval to 21600?
motion_detection:
interval: 21600
trigger_recorder: False
trigger_detector: False
One (of 5) of the camera examples...
cameras:
width: 2304
height: 1296
fps: 15
audio_codec: "aac"
rtsp_transport: tcp
mqtt_name: FrontDoor
host: 192.168.1.201
port: 8554
username: xxxxxx
password: xxxxxx
path: /proxied1
static_mjpeg_streams:
frontdoor-debug:
width: 2304
height: 1296
draw_objects: True
draw_zones: True
object_detection:
enable: true
labels:
- label: person
require_motion: False
confidence: 0.9
height_min: 0.232
height_max: 0.9999
width_min: 0.0695
width_max: 0.434
trigger_recorder: true
Yet I still see motion detection is initialising in the logs.
Beta Was this translation helpful? Give feedback.
All reactions