Skip to main content

You are not logged in. Your edit will be placed in a queue until it is peer reviewed.

We welcome edits that make the post easier to understand and more valuable for readers. Because community members review edits, please try to make the post substantially better than how you found it, for example, by fixing grammar or adding additional resources and hyperlinks.

3
  • 5
    Excellent post from giphy engineers engineering.giphy.com/how-to-make-gifs-with-ffmpeg
    – spuder
    Commented Mar 30, 2021 at 22:16
  • I had this same macroblocking issue with Clipchamp export to gif feature. I'm mentioning this for the algorithm. Commented Mar 23, 2023 at 23:07
  • 3
    If you don't want any scaling: ffmpeg -i input.mp4 -y -vf 'fps=50,split[s0][s1];[s0]palettegen[p];[s1][p]paletteuse' -loop 0 output.gif. fps=50 is the maximum highly compatible value.
    – awvalenti
    Commented Nov 6, 2023 at 19:15