Can a Cloudflare Worker run FFmpeg on a file in R2?
Not inside the Worker. The isolate has no native binary and no child_process, and ffmpeg.wasm can't compile its core at runtime there. The Worker can submit a job in one request and return, and the job reads the file from R2 and writes the result back.
