Update custom_filters.md

This commit is contained in:
jb-alvarado 2024-03-18 12:30:29 +01:00 committed by GitHub
parent 8375d55a28
commit ab51f860b4
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -48,14 +48,24 @@ custom_filter: "edgedetect=mode=colormix:high=0[c_v_out]"
The **custom filter** from **config -> processing** and from **playlist** got applied in the _decoder_ instance on every file: The **custom filter** from **config -> processing** and from **playlist** got applied in the _decoder_ instance on every file:
```
+-------------------------------------------------- + ```mermaid
| file loop | flowchart LR
| +-------------------------------------+ | PIPE +------------------------+
| input -> | decoder / filtering / custom filter |-------------| encoder / text overlay | -> output subgraph fileloop["file loop"]
| +-------------------------------------+ | +------------------------+ direction LR
| start new on file change | constant output Input --> dec
+---------------------------------------------------+ subgraph filter["start new on file change"]
direction LR
dec["decoder / filtering / custom filter"]
end
end
subgraph fileout["constant output"]
direction LR
enc["encoder / text overlay"]
end
dec -- PIPE --> enc
enc --> output
``` ```
#### When take which #### When take which