What is the ffmpeg command that writes the computer screen, since it used to have a command via the command line that made this recording without needing other software, just pure ffmpeg.
What is the ffmpeg command that writes the computer screen, since it used to have a command via the command line that made this recording without needing other software, just pure ffmpeg.
What about:
$ ffmpeg -f x11grab -s 1280x720 -r 25 -i :0.0 -q:v 5 video.mkv
Where:
$ ffmpeg -f x11grab -s <Resolucao> -r <Quadros Por Segundo> -i :0.0 -q:v <Qualidade de Video 1-5> <Arquivo de Saida>