From 60201faf820f1b3459f4a6e39a1a98196f5a9234 Mon Sep 17 00:00:00 2001 From: Francisco Matias Cuenca-Acuna Date: Wed, 15 Nov 2023 11:32:39 -0300 Subject: [PATCH] Update docs/docs/guides/video_pipeline.md Co-authored-by: Blake Blackshear --- docs/docs/guides/video_pipeline.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/docs/docs/guides/video_pipeline.md b/docs/docs/guides/video_pipeline.md index 2c01cc2df..fd717eaa3 100644 --- a/docs/docs/guides/video_pipeline.md +++ b/docs/docs/guides/video_pipeline.md @@ -38,11 +38,11 @@ flowchart TD RecStore[(Recording\nstore)] SnapStore[(Snapshot\nstore)] - subgraph Aquisition + subgraph Acquisition Cam["Camera"] -->|FFmpeg supported| Stream Cam -->|"Other streaming\nprotocols"| go2rtc go2rtc("go2rtc") --> Stream - Stream[Capture main & Sub\nstreams] --> |detect stream|Decode(Decode & Downscale) + Stream[Capture main and\nsub streams] --> |detect stream|Decode(Decode and\ndownscale) end subgraph Motion Decode --> MotionM(Apply\nmotion masks) @@ -54,9 +54,9 @@ flowchart TD ObjectD --> ObjectFilter(Apply object filters & zones) ObjectFilter --> ObjectZ(Track objects) end - Stream --> |decoded frames|BirdsEye - MotionD --> |motion event|BirdsEye - ObjectZ --> |object event|BirdsEye + Decode --> |decoded frames|Birdseye + MotionD --> |motion event|Birdseye + ObjectZ --> |object event|Birdseye MotionD --> |"video segments\n(retain motion)"|RecStore ObjectZ --> |detection clip|RecStore