Last active
March 23, 2020 01:07
-
-
Save sooop/510adb232eccb21277a11ea311d58ba2 to your computer and use it in GitHub Desktop.
convert video to animated GIF using FFMPEG
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@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