is there any RaspberryPi/Linux screen recording software (a la Camstudio for Windows) ?
regards
Simon
from the ffmpeg manpageX11 grabbing
FFmpeg can grab the X11 display.
ffmpeg -f x11grab -s cif -r 25 -i :0.0 /tmp/out.mpg
0.0 is display.screen number of your X11 server, same as the DISPLAY
environment variable.
ffmpeg -f x11grab -s cif -r 25 -i :0.0+10,20 /tmp/out.mpg
0.0 is display.screen number of your X11 server, same as the DISPLAY
environment variable. 10 is the x-offset and 20 the y-offset for the
grabbing.
Code: Select all
ffmpeg -f x11grab -s 480x360 -r 25 -i :0,0+700,100 /tmp/out.avi