Fix indentation in getting_started.md

`detect`, `motion` and `record` were nested within `cameras` whereas they should be on the same level.
This commit is contained in:
rondo-lehner 2025-10-19 19:38:39 +02:00 committed by GitHub
parent 4319118e94
commit 165659fbee
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -282,10 +282,11 @@ cameras:
- path: rtsp://10.0.10.10:554/high_res_stream # <----- Add stream you want to record from - path: rtsp://10.0.10.10:554/high_res_stream # <----- Add stream you want to record from
roles: roles:
- record - record
detect: ...
record: # <----- Enable recording detect: ...
enabled: True record: # <----- Enable recording
motion: ... enabled: True
motion: ...
``` ```
If you don't have separate streams for detect and record, you would just add the record role to the list on the first input. If you don't have separate streams for detect and record, you would just add the record role to the list on the first input.