Skip to content

bigasdev/X-Gif-Maker

Repository files navigation

 Fortress logo

X-Gif-Maker

GitHub Actions Workflow Status GitHub Release

Turn your videos into GIFs in a snap! Customize settings to shrink file sizes, suitable for sharing on social media platforms.

Introduction

This is a revamped version of my Twitter-Gif-Maker Tool, which I originally created a while back to support my game development posts on Twitter.

The purpose of this project was to refine and test my work-in-progress framework called Fortress, and to optimize the tool with an elegant interface for easier usability.

This gif was created with X-Gif-Maker!

Features

  • Straightforward usage: simply drag and drop your file or select it to convert it to a .gif format, saving it to any folder.
  • Options to adjust your .gif quality and width.
  • Shortcut keys provided for all actions for quick iterations.
  • Utilizes multithreading to prevent the program from becoming unresponsive during video conversion.
  • Beautiful pixel-art UI.

Feedback

Feel free to send feedback on Twitter or file an issue. Feature requests are always welcome.

If there's anything you'd like to chat about, please feel free to message me at Discord!

Build Process

You can grab the tool from the Releases section. However if you prefer to check the source code and compile it yourself its pretty simple.

Currently, the tool is only compatible with Windows. If you are using Windows, ensure that you have gcc 13.2.0+ installed.

After cloning the repository, execute the setup.bat file located in the scripts_dlls folder to configure your .debug and .release folders with the necessary DLLs and resources.

The SDL and other libraries I use are included in the source code, so you only need to run the following commands to build from the Makefile:

mingw32-make -j debug
or
mingw32-make release DEBUG=false

For the release version, I recommend utilizing the ship.bat located within the scripts_dlls folder, which generates the complete .release folder for you.

Following the release compilation, you can locate the modern_installer.nsi file inside the scripts_dlls folder, which allows you to generate a nice NSIS installer.

For VSCode users the project has a commandbar setup.

Acknowledgments

A huge thanks to NabiKAZ for creating video2gif, which enables this quick and easy GIF conversion.

And of course, thanks to the FFmpeg project