All guides

How to Download a Twitter GIF (as GIF or MP4)

Twitter (X) "GIFs" aren't really GIF files. This guide explains what they actually are, how to download one, and how to convert it to a true animated .gif if you need that format.

Short answer: paste the tweet link into the downloader, then save the file — it comes down as a silent MP4. To get a real .gif, convert that MP4 with ffmpeg or an online converter.

Try it now

Paste a Twitter/X link and download in seconds — free, no login.

Open the downloader

Twitter GIFs are silent MP4s

When you post a GIF to Twitter, the platform transcodes it into a short, looping, silent MP4 for bandwidth reasons. There's no .gif file on Twitter's servers to grab. In this tool's API, that media is labelled type: "gif" so you can tell it apart from a normal type: "video":

{
  "media": [
    {
      "type": "gif",
      "poster": "https://.../thumb.jpg",
      "variants": [
        { "quality": "480p", "container": "mp4", "url": "https://.../gif.mp4" }
      ]
    }
  ]
}

Download the GIF (as MP4)

  1. Copy the tweet link (share icon → Copy link).
  2. Paste it into the box on the home page and let it extract.
  3. Save the file — it downloads as an MP4 with no audio track.

That MP4 loops and plays like the original GIF, and it's smaller and sharper than a real .gif would be. For most uses (re-posting, messaging apps, editing) the MP4 is what you want. The general flow is covered in how to download a Twitter video.

Convert the MP4 to a true .gif

If you specifically need the .gif format — for a wiki, an old forum, or a tool that only accepts GIFs — convert the downloaded MP4.

With ffmpeg (best quality)

A two-pass palette approach keeps colours clean and file size reasonable:

ffmpeg -i input.mp4 -vf "fps=15,scale=480:-1:flags=lanczos,palettegen" palette.png
ffmpeg -i input.mp4 -i palette.png -lavfi "fps=15,scale=480:-1:flags=lanczos[x];[x][1:v]paletteuse" output.gif

Lower the fps or scale width to shrink the file; raise them for smoother, larger output.

With an online converter

If you'd rather not install ffmpeg, search for any "MP4 to GIF" web converter, upload the MP4 you downloaded, and download the resulting .gif. Quality varies by service, and large clips may be capped.

Frequently asked questions

Why does my Twitter GIF download as MP4?

Because Twitter stores it as a silent MP4 — there is no GIF file to download. The MP4 is the original animation.

Does the MP4 have sound?

No. Twitter GIFs are always silent, so the file has no audio track.

Is MP4 or GIF better quality?

MP4. It's smaller and sharper. Only convert to .gif when a tool strictly requires that format.

Can I download regular videos too?

Yes — including 1080p Full HD clips.

Try it now

Paste a Twitter/X link and download in seconds — free, no login.

Open the downloader

Only download public content you have the right to use, and respect copyright.