All Projects → NabiKAZ → video2gif

NabiKAZ / video2gif

Licence: MIT license
A batch script for convert video to GIF files by FFmpeg.exe on Windows

Programming Languages

Batchfile
5799 projects

Projects that are alternatives of or similar to video2gif

Ffmpeg Gif Script For Bash
Turn your videos into palette-mapped gifs with this easy script
Stars: ✭ 100 (+108.33%)
Mutual labels:  converter, gif
Gifski
🌈 Convert videos to high-quality GIFs on your Mac
Stars: ✭ 5,691 (+11756.25%)
Mutual labels:  converter, gif
Tracker
Even the best of apps have their issues
Stars: ✭ 113 (+135.42%)
Mutual labels:  converter, gif
ARF-Converter
Bulk ARF file converter
Stars: ✭ 15 (-68.75%)
Mutual labels:  converter, batch-script
medium-to-markdown
Converts Medium posts to markdown.
Stars: ✭ 68 (+41.67%)
Mutual labels:  converter
image-optimizer
Image optimization using PHP
Stars: ✭ 28 (-41.67%)
Mutual labels:  gif
FunVideo
A series of embeddable theme into video, include animation and voice.
Stars: ✭ 19 (-60.42%)
Mutual labels:  gif
schema2ldif
Schema 2 ldif : tool to convert .schema to .ldif files and mange them live into an openldap server
Stars: ✭ 14 (-70.83%)
Mutual labels:  converter
mpv-gif-generator
Creates animated gifs using mpv hotkeys
Stars: ✭ 32 (-33.33%)
Mutual labels:  gif
mdtable2csv
convert tables in .md to .csv
Stars: ✭ 91 (+89.58%)
Mutual labels:  converter
Rates
A currency rate converter App.
Stars: ✭ 13 (-72.92%)
Mutual labels:  converter
SSffmpegVideoOperation
This is a library of FFmpeg for android... 📸 🎞 🚑
Stars: ✭ 261 (+443.75%)
Mutual labels:  gif
to-ico
Convert PNG to ICO in memory
Stars: ✭ 115 (+139.58%)
Mutual labels:  converter
CTR-tools
Crash Team Racing (PS1) tools - a C# framework by DCxDemo and a set of tools to parse files found in the original kart racing game by Naughty Dog.
Stars: ✭ 93 (+93.75%)
Mutual labels:  converter
romans
A Simple PHP Roman Numerals Library
Stars: ✭ 40 (-16.67%)
Mutual labels:  converter
Excel2LaTeX
The Excel add-in for creating LaTeX tables
Stars: ✭ 914 (+1804.17%)
Mutual labels:  converter
cyan
Cyan Color Converter
Stars: ✭ 68 (+41.67%)
Mutual labels:  converter
CodeProject
Common code for unity project develop.
Stars: ✭ 28 (-41.67%)
Mutual labels:  converter
tweet2gif
Download videos in tweets as GIFs
Stars: ✭ 22 (-54.17%)
Mutual labels:  gif
gluon2pytorch
Gluon to PyTorch deep neural network model converter
Stars: ✭ 72 (+50%)
Mutual labels:  converter

video2gif

sample gif file generated

A batch script for convert video to GIF files by FFmpeg.exe on Windows.

Installation

  • Clone the repo
  • Install FFmpeg for Windows.
  • Make sure the ffmpeg.exe and video2gif.bat are on your systems path.

Usage

Method #1: Anywhere you can use it by this command in cmd:

video2gif myvideo.mp4

Then you have myvideo.gif in current directory.

If myvideo.gif there is existed, question from you for overwrite it.

Method #2: You can just drag and drop .gif file on the video2gif.bat file.

Advance Usage

video2gif SOURCE_FILE [OPTIONS]

Options:

  SOURCE_FILE      Source video file name for convert
                   also you can drag and drop source video file to this batch file directly
  -o               Output destination .GIF file name
                   if not set it, use video source file name with new .gif extension
  -y               Overwrite destination file
                   if not set it, appears prompt for overwrite destination file
  -f               Frame per second (fps)
                   default: 15
  -w               Width scale of destination gif file
                   in pixel unit and (-1) for use original width, default: -1
  -s               Start time of video source for crop
                   in second or time format (ex. 1:12), if set it, so must be set (-d) param
  -d               Duration time of video source for crop
                   in second, if set it, so must be set (-s) param
  -c               Maximum number of colors to the palette
                   must be (<=256), default: 256
  -q               Quality of destination gif file
                   must be a number between 1(low) to 6(high), default: 5

Examples:

  video2gif sample.mp4
  video2gif sample.mp4 -y -w 60 -q 1 -f 10
  video2gif sample.mp4 -o new_file.gif -y -w 100 -f 10 -s 10 -d 5
  video2gif sample.mp4 -s 0:30 -d 20 -c 128 -q 6
  video2gif sample.mp4 -s 1:16.5 -d 8.3

Tips

Special thanks to this article.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].