Dozens of encoding process for a single video? #998
Replies: 1 comment
-
It's normal, part of chunking and encoding setup. Essentially mediacms spawns as many "encoders" as it is allowed by the hardware, to encode small chunks of the whole video across multiple CPU cores to speed up the process (parallel versus sequential). The green items in htop are "userland threads", aka threads within the same process that allows parallel tasks to be completed. This happens at the process level, not the kernel level like a regular process, hence the "userland" part. What this means is that you cannot count the green highlighted processes as another process.
deploy:
resources:
limits:
cpus: "4"
memory: "4g" |
Beta Was this translation helpful? Give feedback.
-
I must say I love love love this piece of software, truly an amazing feet. With this I just noticed that when I encode a mp4 it spawns off dozens of processes. Is this normal or did I misconfigure something?
Thank you,
Anthony
Beta Was this translation helpful? Give feedback.
All reactions