Adding a new configuration for the transcoder involves moving the transcoder directly inside core and calling the aricodec from there. current config ```mermaid graph LR A[CORE] <--mqtt--> B(transcoder); B <--mqtt--> C(ARICODEC); ``` potential new config moving just transcoder inside core and communicating with aricodec with MQTT or a new RESTAPI ```mermaid graph LR C(ARICODEC) <--mqtt or rest--> B(transcoder) subgraph CORE B(transcoder) end ``` potential new config removing transcoder and moving aricodec directly inside core ```mermaid graph LR subgraph CORE B(ARICODEC) end ```
Adding a new configuration for the transcoder
involves moving the transcoder directly inside core and calling the aricodec from there.
current config
graph LR A[CORE] <--mqtt--> B(transcoder); B <--mqtt--> C(ARICODEC);potential new config moving just transcoder inside core
and communicating with aricodec with MQTT or a new RESTAPI
potential new config removing transcoder and moving aricodec directly inside core