Update line breaks in video_pipeline.md diagram (#21919)

Mermaid compatible newlines (<br>)
This commit is contained in:
Meow 2026-02-23 14:45:49 +01:00 committed by GitHub
parent 4131252a3b
commit 984d654c40
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -37,18 +37,18 @@ The following diagram adds a lot more detail than the simple view explained befo
%%{init: {"themeVariables": {"edgeLabelBackground": "transparent"}}}%% %%{init: {"themeVariables": {"edgeLabelBackground": "transparent"}}}%%
flowchart TD flowchart TD
RecStore[(Recording\nstore)] RecStore[(Recording<br>store)]
SnapStore[(Snapshot\nstore)] SnapStore[(Snapshot<br>store)]
subgraph Acquisition subgraph Acquisition
Cam["Camera"] -->|FFmpeg supported| Stream Cam["Camera"] -->|FFmpeg supported| Stream
Cam -->|"Other streaming\nprotocols"| go2rtc Cam -->|"Other streaming<br>protocols"| go2rtc
go2rtc("go2rtc") --> Stream go2rtc("go2rtc") --> Stream
Stream[Capture main and\nsub streams] --> |detect stream|Decode(Decode and\ndownscale) Stream[Capture main and<br>sub streams] --> |detect stream|Decode(Decode and<br>downscale)
end end
subgraph Motion subgraph Motion
Decode --> MotionM(Apply\nmotion masks) Decode --> MotionM(Apply<br>motion masks)
MotionM --> MotionD(Motion\ndetection) MotionM --> MotionD(Motion<br>detection)
end end
subgraph Detection subgraph Detection
MotionD --> |motion regions| ObjectD(Object detection) MotionD --> |motion regions| ObjectD(Object detection)
@ -60,8 +60,8 @@ flowchart TD
MotionD --> |motion event|Birdseye MotionD --> |motion event|Birdseye
ObjectZ --> |object event|Birdseye ObjectZ --> |object event|Birdseye
MotionD --> |"video segments\n(retain motion)"|RecStore MotionD --> |"video segments<br>(retain motion)"|RecStore
ObjectZ --> |detection clip|RecStore ObjectZ --> |detection clip|RecStore
Stream -->|"video segments\n(retain all)"| RecStore Stream -->|"video segments<br>(retain all)"| RecStore
ObjectZ --> |detection snapshot|SnapStore ObjectZ --> |detection snapshot|SnapStore
``` ```