Burn screen with ffmpeg

1

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.

    
asked by anonymous 08.06.2017 / 10:23

1 answer

1

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>
    
14.06.2017 / 16:36