• Welcome to TechPowerUp Forums, Guest! Please check out our forum guidelines for info related to our community.

is fraps still a thing for screen recording?

Joined
Jul 15, 2022
Messages
958 (1.08/day)
Can't you just use FFmpeg on windows?

On OpenBSD, I can very easily make a screen recording using FFmpeg:

ffmpeg \
-y -f x11grab -thread_queue_size 4096 -r 30 -i :0 \
-c:v libx264rgb -crf 0 -b:v 10000k -preset ultrafast \
-c:a flac -b:a 160k -ar 48000 \
output.mkv


I suspect something similar should also be possible on windows10.
 
Top