From 984d654c408aa716771208aecd4bbedd9e3442fe Mon Sep 17 00:00:00 2001 From: Meow Date: Mon, 23 Feb 2026 14:45:49 +0100 Subject: [PATCH] Update line breaks in video_pipeline.md diagram (#21919) Mermaid compatible newlines (
) --- docs/docs/frigate/video_pipeline.md | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/docs/docs/frigate/video_pipeline.md b/docs/docs/frigate/video_pipeline.md index ba9365650..74b804b16 100644 --- a/docs/docs/frigate/video_pipeline.md +++ b/docs/docs/frigate/video_pipeline.md @@ -37,18 +37,18 @@ The following diagram adds a lot more detail than the simple view explained befo %%{init: {"themeVariables": {"edgeLabelBackground": "transparent"}}}%% flowchart TD - RecStore[(Recording\nstore)] - SnapStore[(Snapshot\nstore)] + RecStore[(Recording
store)] + SnapStore[(Snapshot
store)] subgraph Acquisition Cam["Camera"] -->|FFmpeg supported| Stream - Cam -->|"Other streaming\nprotocols"| go2rtc + Cam -->|"Other streaming
protocols"| go2rtc go2rtc("go2rtc") --> Stream - Stream[Capture main and\nsub streams] --> |detect stream|Decode(Decode and\ndownscale) + Stream[Capture main and
sub streams] --> |detect stream|Decode(Decode and
downscale) end subgraph Motion - Decode --> MotionM(Apply\nmotion masks) - MotionM --> MotionD(Motion\ndetection) + Decode --> MotionM(Apply
motion masks) + MotionM --> MotionD(Motion
detection) end subgraph Detection MotionD --> |motion regions| ObjectD(Object detection) @@ -60,8 +60,8 @@ flowchart TD MotionD --> |motion event|Birdseye ObjectZ --> |object event|Birdseye - MotionD --> |"video segments\n(retain motion)"|RecStore + MotionD --> |"video segments
(retain motion)"|RecStore ObjectZ --> |detection clip|RecStore - Stream -->|"video segments\n(retain all)"| RecStore + Stream -->|"video segments
(retain all)"| RecStore ObjectZ --> |detection snapshot|SnapStore ```