Why can't I run FFmpeg in a Cloudflare Worker?
Workers run in a V8 isolate, not a container. There's no real disk, no way to spawn a native process, and no native executable like FFmpeg to run. Offloading the command keeps the Worker fast and under its CPU budget.
