Skip to content

Instantly share code, notes, and snippets.

@sooop
Last active March 23, 2020 01:07
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sooop/510adb232eccb21277a11ea311d58ba2 to your computer and use it in GitHub Desktop.
Save sooop/510adb232eccb21277a11ea311d58ba2 to your computer and use it in GitHub Desktop.
convert video to animated GIF using FFMPEG
@echo off
@setlocal
@set start_time="0:0"
@set filters="fps=20,scale=320:-1:flags=lanczos"
@set palette="__palette.png"
@ffmpeg -v warning -ss %start_time% -i %1 ^
-vf "%filters%,palettegen"^
-y %palette%
@ffmpeg -v warning -ss %start_time% -i %1 ^
-i %palette%^
-lavfi "%filters% [x]; [x][1:v] paletteuse"^
-y %2
@endlocal
@echo on
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment