

png with the file names and their extensions, in the order that interests us the most. To encode images exactly in the given order we will use the –nosort option. Keep in mind that will reduce the quality to 10%. To do what the encoding process is 3 times faster than usual speed, run: gifski -o archivo.gif -fast *.png Gifski will take longer when encoding a large number of images.

Obviously, lower quality can give a smaller file and higher quality a larger one in our GIF animation. We can encode with a specific quality on the scale of 1-100. To do this, run: gifski -o archivo.gif -fps 30 *.png We can set the number of frames per second we want in the gif animation. We will also be able to encode images exactly in the order given.įor, create a GIF animation with a specific dimension, for example width = 512 and height = 490, use the following command: gifski -o archivo.gif -W 512 -H 490 *.png.Show a specific number of frames per second.Create the GIF animation with a specific dimension.Gifski also has some features with which we can: I want to clarify that doing this example, all the images I used had the same size. There we will execute the following command to create a GIF animation from the set of images of which we have: We start by going to the location where we save the images.
MAC GIFSKI INSTALL
If you don't want to install cargo or Linuxbrew, download the latest binary executables from the releases page and compile and install gifski manually. We can also get hold of this program using the package manager linuxbrew. Once this language is installed, in a terminal (Ctrl + Alt + T) we write: The first will be install it using charge, if we have installed the Rust programming language. We will have different installation possibilities. We open a terminal (Ctrl + Alt + T) and write:įor, install pngquant, in the same terminal, we are going to execute: sudo apt install pngquant Install GifskiĪfter installing the prerequisites, we can now install Gifski. We'll have to make sure we have installed FFMpeg and Pngquant in our Ubuntu before getting into the Gifski installation.įFmpeg is available in the default repositories of most Gnu / Linux distributions. Gifski installation Previous requirements
