I've got a macbook with M1 processor (arm64)
While MoviePy renders video file CPU Usage doesn't grows more than one core and the same for ffmpeg. But i've got 8 core and wanna to use all of them to that.
I've got a macbook with M1 processor (arm64)
While MoviePy renders video file CPU Usage doesn't grows more than one core and the same for ffmpeg. But i've got 8 core and wanna to use all of them to that.
Check this post out. The problem you have is that python is by deffinition monothread so unless you use multithreading (that isn't actually real multithreading but multi instancing) you will only ever use one thread of your processor. You can try to multithread but as said in the post I linked, it won't be easy to do considering the nature of the task.