mrauer / gifme

Video to animated GIF converter.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

GifMe

Logo

Converts your video to a GIF.

Report Bug · Request Feature

Table of Contents

  1. Install for Linux
  2. Install for Mac
  3. Usage
  4. License

Install for Linux

The sofware require the two following dependencies:

apt install ffmpeg
apt install gifsicle

Then here is how you can install gifme:

base_url='https://github.com/mrauer/gifme/releases/download/v1.0.0'
curl -Lo gifme "$base_url"/gifme_1.0.0_linux_amd64 && \
chmod +x gifme && sudo mv gifme /usr/local/bin

Install for Mac

Install the dependencies (we assume you have brew):

brew install ffmpeg
brew install gifsicle

Run the following command:

base_url='https://github.com/mrauer/gifme/releases/download/v1.0.0'
curl -Lo gifme "$base_url"/gifme_1.0.0_darwin_amd64 && \
chmod +x gifme && sudo mv gifme /usr/local/bin

Usage

Usage is platform agnostic:

gifme --input <path-to-your-video-file>

This will generate an optimized gif file named output.gif at the location you ran that command.

Currently only supporting .mp4 files.

License

Distributed under the MIT License. See LICENSE for more information.

About

Video to animated GIF converter.

License:MIT License


Languages

Language:Go 75.0%Language:Makefile 16.0%Language:Dockerfile 9.1%