DEV Community

Guionardo Furlan
Guionardo Furlan

Posted on • Updated on

Creating animated gifs from your terminal

Creating animated gifs from your terminal

Post created at 2022-08-19 08:36

I need to generate some videos to demonstrate console applications running.

gif

source

Screen casting or capture is boring, and generates large files.

Then, I found two command line tools that do the job.

First, we need to capture the console interation, and this is done using the Terminal Session Recorder asciinema. Installation instructions can be found here.

I'm using Ubuntu, so the installation was easy-peasy.

sudo apt install asciinema
[sudo] senha para guionardo: 
A ler as listas de pacotes... Pronto
A construir árvore de dependências 
A ler a informação de estado... Pronto
Serão instalados os seguintes NOVOS pacotes:
 asciinema
0 pacotes actualizados, 1 pacotes novos instalados, 0 a remover e 0 não actualizados.
É necessário obter 35,0 kB de arquivos.
Após esta operação, serão utilizados 125 kB adicionais de espaço em disco.
Obter:1 http://br.archive.ubuntu.com/ubuntu focal/universe amd64 asciinema all 2.0.2-1 [35,0 kB]
Obtidos 35,0 kB em 7s (4.877 B/s) 
A seleccionar pacote anteriormente não seleccionado asciinema.
(A ler a base de dados ... 435184 ficheiros e directórios actualmente instalados.)
A preparar para desempacotar .../asciinema_2.0.2-1_all.deb ...
A descompactar asciinema (2.0.2-1) ...
A instalar asciinema (2.0.2-1) ...
A processar 'triggers' para man-db (2.9.1-1) ...
Enter fullscreen mode Exit fullscreen mode

For our first test, we can command:

❯ asciinema rec first.cast
asciinema: recording asciicast to first.cast
asciinema: press <ctrl-d> or type "exit" when you're done
Enter fullscreen mode Exit fullscreen mode

After that, you can run your commands normally and all your key strokes and console outputs will be recorded into the first.cast file.

To finish the capture press CTRL+D or type exit. Check the official usage documentation for more options.

Now, we need to generate the animated gif file. The tool to this job is the might agg - asciinema gif generator.

It's a rust application, and you can clone the repository and build it, or you can download a binary file compatible to your environment surfing to the latest release link. Download the correct version to your system, put the executable in some directory you can reach and execute.

If you have rust installed, you can simply run this to install agg:

cargo install --git https://github.com/asciinema/agg
Enter fullscreen mode Exit fullscreen mode

Check if the installation is OK.

❯ agg --version
agg 1.1.0
Enter fullscreen mode Exit fullscreen mode

If your shell has some fancy unicode characters (like mine), you can reference a TTF font to render the gif.
I like "JetBrains Mono", and you can download it from here, or if you like another dev font, you can use.

In my case, I saved the TTF files into a folder (./fonts) to use in next step.

Generate a gif from the first.cast file created .

❯ ./agg --font-dir ./fonts --font-family "agave Nerd Font" first.cast first.gif
31 / 31 [=================================================================] 100.00 % 47.71/s 
Enter fullscreen mode Exit fullscreen mode

And now, we have our first.gif file in current folder.

first

Top comments (0)