1

I'm looking for something to the equivalent of licecap.

It's an animated gif screen capture tool. I use it mainly for capturing QA bug reports during development.

Zanna
  • 72,312

1 Answers1

1

Byzanz desktop recorder is available in the universe repository in Ubuntu 14.04 and later. Byzanz also allows recording of audio, when the output format supports it.

sudo apt install byzanz

Tto record from screen run the byzanz-record command in the terminal with the following syntax:

byzanz-record -d DURATION --delay=DELAY -x X-COORDINATE -y Y-COORDINATE -w WIDTH -h HEIGHT YOUR-FILENAME

Example:

byzanz-record -d 20 --delay=6 -x 0 -y 0 -w 1200 -h 800 desktop-animation.gif

will record 20 seconds from a rectangular screen area starting at top left 0,0 with width 1200 and height 800 into a file named animation.gif with an initial delay of 6 seconds.

karel
  • 122,292
  • 133
  • 301
  • 332