Improve ffmpeg CPU utilization compromising quality
I am using FFMpeg for screen capture. I am looking for a screen capture tool that will work on 1000 virtual machines (Windows and Mac). The VM has a limited processor (1 core) and 2GB of RAM and no GPU.
I am currently calling ffmpeg with
ffmpeg -y -framerate 8 -f dshow -f gdigrab -i "desktop" -c:v libx264 -crf 0 -preset ultrafast -threads 0 temp.mkv
Am I using gdigrab for screen capture? Are there any better options that can lower your CPU usage? or changing the encoder or format?
I am aiming to reduce CPU usage by 4-5%.
Thank you in advance
+3
source to share
2 answers