ДокументыИзображенияМедиаИнструменты PDF

Конвертер GIF в WebM Online

Конвертируйте анимированные GIF в WebM. До 95% меньше по размеру. Бесплатно, прямо в браузере, без загрузки файлов.

Drag your file here

.gif · up to 100 MB

Processed in your browser — file never uploadedFree
Note: The first conversion loads the FFmpeg engine (~25MB). Subsequent conversions will be faster.

GIF в WebM: до 95% меньше при том же визуальном качестве

VP9-сжатие — до 95% меньше GIF

Replace heavy GIFs with WebM VP9 for faster web pages and better Core Web Vitals scores.

Discord, Telegram, браузеры — нативная поддержка

Upload animations to Discord and create Telegram video stickers with compact WebM files.

Конвертация без загрузок на серверы

Your GIF never leaves your device. FFmpeg.wasm processes everything locally in WebAssembly.

Результат за секунды

A 10 MB GIF can become a 500 KB WebM. No perceptible visual loss.

Три шага — никаких сложностей

1

Загрузите GIF

Перетащите анимированный GIF в рабочую область. Файл обрабатывается локально — никуда не отправляется.

2

Конвертация в WebM (VP9)

GIF конвертируется в WebM с кодеком VP9. Анимация сохраняется полностью; результат намного компактнее благодаря современному сжатию.

3

Скачайте WebM

Используйте файл на сайте, в чате (Discord, Telegram) или в любом другом месте, где нужна компактная анимация.

Остались вопросы?

GIF использует сжатие LZW, разработанное в 1987 году для статичных изображений. Анимированные GIF хранят каждый кадр отдельно с ограниченной межкадровой оптимизацией. VP9 в WebM использует современные алгоритмы межкадрового сжатия, что даёт файлы на 80–95% меньше.

Зависит от реализации. В браузере добавьте атрибут loop к тегу <video> — анимация будет зацикливаться бесконечно, как GIF. Большинство Discord и Telegram-клиентов делают это автоматически.

Да. Оба мессенджера воспроизводят WebM-видео нативно. WebM значительно уменьшает нагрузку на канал и ускоряет загрузку по сравнению с GIF эквивалентного качества.

Используйте тег <video> вместо <img>: <video autoplay loop muted playsinline><source src="animation.webm" type="video/webm"></video>. Атрибуты autoplay, loop, muted и playsinline обеспечат поведение, идентичное GIF.

Обычно на 80–95% меньше исходного GIF. GIF на 5 МБ превращается в WebM размером 250–1000 КБ при визуально идентичном качестве. Разброс зависит от содержимого анимации.

GIF поддерживает только 1-битную прозрачность (пиксель либо полностью прозрачный, либо непрозрачный). WebM с VP9 поддерживает альфа-канал. Тем не менее многие браузеры и приложения не отображают прозрачность WebM корректно. Для прозрачных анимаций предпочтительнее APNG или видео с зелёным фоном.

Конвертировать GIF в WebM: анимированный GIF в WebM онлайн — до 95% меньше

Бесплатный онлайн-конвертер GIF в WebM. Конвертируйте анимированные GIF в компактный WebM с VP9 — до 95% меньше при том же качестве. Без загрузок — обработка через FFmpeg WebAssembly в браузере.

The impact of GIF to WebM conversion on real web performance is quantifiable and significant. Google published in its Chromium blog in 2015 an analysis of real web pages where animated GIFs represented a disproportionate share of total page weight: on pages with high-quality GIFs, animation assets could represent 40-70% of total transfer weight. Converting to WebM reduced this component by 85% on average, with extreme cases of up to 97%. Google's Core Web Vitals, the set of user experience metrics that directly impact search engine rankings since May 2021, implicitly penalize large GIFs: heavy GIFs trigger a high LCP (Largest Contentful Paint) if they are the largest element on screen, increase CLS (Cumulative Layout Shift) if loaded asynchronously, and impact FID (First Input Delay) / INP (Interaction to Next Paint) due to the CPU load of GIF rendering. Giphy, with over 700 million daily users per their 2020 published data, stores its content internally in WebM and serves GIF only when the client explicitly requests it — serving WebM when the browser supports it (all modern browsers since 2013). Tenor, acquired by Google in March 2018 for $40 million, also converted its storage pipeline to WebM after the acquisition.

Convertir.ai runs GIF to WebM conversion entirely in the browser using FFmpeg.wasm. The technical process starts with GIF format analysis: FFmpeg's GIF decoder reads the header block (GIF87a or GIF89a), the global color table (up to 256 colors in RGB palette), and individual image blocks with their optional local color tables and graphic control extensions (which specify the delay between frames in hundredths of a second and the disposal method for the previous frame). Frames are decoded to 8-bit RGB images with expanded palette. If the GIF has a transparent color index declared in the graphic control extension block, FFmpeg converts frames to RGBA (with alpha channel), enabling WebM VP9 generation with transparency using the yuva420p profile. For GIFs without transparency, frames are converted to YUV420p for greater compression efficiency. The VP9 encoder (libvpx-vp9) receives frames with timestamps extracted from GIF delays (converted from hundredths of a second to VP9 timebase units) and generates the VP9 stream with optimized inter-frame prediction. The encoder speed mode (cpu-used) is configured at a quality/speed balance appropriate for interactive browser use. The output WebM includes the Matroska SeekHead element for efficient random access, though for looping web animations sequential access is sufficient. All processing occurs in WebAssembly without sending data to any server, ensuring privacy for personal stickers, corporate memes, or confidential content.