Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

how can you record your screen in a gif? [closed]

Tags:

macos

gif

enter image description here

This is the example i am talking about, how can you do this?

like image 788
fenec Avatar asked Feb 05 '15 21:02

fenec


People also ask

How long can a GIF last?

Follow our best practices for making GIFs to optimize your GIFs on GIPHY! Uploads are limited to 15 seconds, although we recommend no more than 6 seconds. Uploads are limited to 100MB, although we recommend 8MB or less. Source video resolution should be 720p max, but we recommend you keep it at 480p.


2 Answers

It depends on your platform, and there are a bunch of ways to do it.

On Mac OSX, there is a built-in QuickTime screen recorder.

  1. Launch QuickTime Player
  2. File menu -> New Screen Recording
  3. Use the tool of your choice (such as ffmpeg) to convert the recording to a gif.

Here's an example of how to convert a recording .mov file to a gif:

ffmpeg -i in.mov -s 600x400 -pix_fmt rgb24 -r 10 -f gif - | gifsicle --optimize=3 --delay=3 > out.gif

See this link for more info and step by step: https://gist.github.com/dergachev/4627207

If you're on other platforms, or prefer to use a specific tool other than the built-in QuickTime, here are a few to consider:

  • Grabilla Firefox Add-On
  • Animated GIF Capture Chrome extension
  • LICEcap for Windows and OSX
like image 186
joelparkerhenderson Avatar answered Oct 07 '22 07:10

joelparkerhenderson


I usually, on Mac, do this task with https://www.cockos.com/licecap/ (source: https://github.com/justinfrankel/licecap). It also runs on Windows.

LICEcap can capture an area of your desktop and save it directly to .GIF (for viewing in web browsers, etc).

GUI is simple but effective, and it's really easy to select just the area you want to capture.

Demo

Output

like image 29
markets Avatar answered Oct 07 '22 06:10

markets