FFMPEG Command to Convert Webm Video to GIF Animation Video
1 |
ffmpeg -i input.webm -pix_fmt rgb24 output.gif |
1 2 |
ffmpeg -y -i input.webm -vf palettegen palette.png |
Then, use the palette to produce gif:
1 |
ffmpeg -y -i input.webm -i palette.png -filter_complex paletteuse -r 10 output.gif |