Initializing... drag & drop files here
Supports: MP4, M4V
MP4 is the ISO base media file format that holds H.264, H.265, or AV1 video. ICO is the Microsoft Windows icon container — a single file that bundles one or more bitmap or PNG images at different sizes and color depths so the OS can pick the right one for context. Extracting an MP4 frame to ICO gives you a static, icon-sized image you can attach to a folder, shortcut, executable, or <link rel="icon"> tag.
.ico file. A single frame from a movie, game capture, or family video makes the folder instantly recognizable in File Explorer..ico for the app shell. A frame from a product demo MP4 works as a placeholder while real icon design is in progress./favicon.ico and Internet Explorer / Edge legacy mode require it. Capture a logo frame from a brand reel for a quick favicon (per Microsoft, supply at least 16, 24, 32, 48, and 256 pixel sizes)..ico for tile art. A gameplay highlight frame is a more memorable shortcut icon than the default executable glyph..ico paths; pulling a frame straight from your stream archive (an MP4) keeps the visuals on-brand..ico thumbnails alongside file lists; rendering a representative video frame to ICO lets a long video be summarised in an icon grid.| Property | MP4 | ICO |
|---|---|---|
| Container type | Time-based video + audio (ISO/IEC 14496-14) | Static image container (Microsoft) |
| Typical payload | H.264, H.265, or AV1 video; AAC audio | BMP (uncompressed) and/or PNG-encoded frames |
| Multi-image support | Multiple tracks but one playable timeline | Yes — one file holds 16, 24, 32, 48, 64, 128, 256 px versions |
| Maximum size | 4K, 8K, hours of footage | Recommended 256×256 max (Microsoft guidance); BITMAPINFOHEADER allows larger but Vista+ tools cap there |
| Transparency | None at the container level | Yes — alpha channel via 32-bit BMP or PNG payload |
| OS integration | Plays in any media player | Used by Windows shell for icons, taskbar, Start, jump lists |
| Browser use | <video> tag, MSE, HLS/DASH segments |
<link rel="icon" href="favicon.ico"> |
Microsoft's official Windows 11 icon scaling table maps display scale to pixel size. The figures below come straight from the App icon construction guide.
| Size | Where Windows uses it | Notes |
|---|---|---|
| 16×16 | Title bar, system tray, context menus (100% scale) | Smallest required — pixel-hint at this size |
| 24×24 | Taskbar, Start "all apps" list (100% scale) | Required minimum per Microsoft |
| 32×32 | Start pins (100%), title bar at 200% | Common favicon size in Chrome on Retina |
| 48×48 | Desktop icons (medium), title bar at 300% | Required minimum |
| 64×64 | Taskbar at 250%, Start pins at 200% | High-DPI laptop default |
| 128×128 | macOS Dock equivalent, high-DPI displays | Optional but recommended |
| 256×256 | Windows Explorer "extra large icons", Start pins at 400% | Largest standard size; PNG-encoded payload since Windows Vista |
For a favicon.ico that covers every browser and pinned-tab use, embed at minimum 16×16, 32×32, and 48×48. xconvert's converter outputs a single-size ICO per pass; for a multi-size favicon.ico, run the conversion at each size you need and combine them with a dedicated ICO editor.
| Preset | Best for | Tradeoff |
|---|---|---|
| Highest / Very High | Brand favicons, app store icons | Largest file size; sharpest detail |
| High / Medium | Folder and shortcut icons | Balanced — good default for most desktop use |
| Low / Very Low / Lowest | Bulk-extracted thumbnail grids | Visible compression at 256×256; fine at 16-32 px where the image is tiny anyway |
For a Windows app icon, 256×256 is the largest standard size and downscales cleanly for every other context. For a favicon, 32×32 is the modern baseline (Chrome on Retina, Safari on macOS) — Microsoft recommends supplying 16, 24, 32, 48, and 256 as the minimum set inside one ICO. Run the conversion at the largest size you need first; a high-resolution source frame downscales better than a small one upscales.
No — each xconvert pass produces a single-size ICO. The ICO container itself supports multi-image bundles (that's what a real Windows .ico is), but combining 16, 32, 48, and 256 px versions into one file requires a multi-image ICO editor. Run the conversion once per size, then merge them in tools like GIMP, IcoFX, or the open-source icotool from icoutils.
Two reasons: (1) the source MP4 frame may be lower than 256 px tall — a 480p (854×480) frame still has detail, but a 240p clip will look soft when scaled. (2) Lower Quality Preset values apply heavier compression to the BMP payload. Use the highest-resolution source video you have and set Quality Preset to Very High or Highest for icons that will be displayed large.
Yes. M4V is Apple's MP4 variant — same MPEG-4 container, occasionally with FairPlay DRM or AC-3 audio. xconvert accepts both .mp4 and .m4v. DRM-protected M4V files (purchased iTunes movies) cannot be decoded; only M4V files you encoded yourself or downloaded unprotected will convert. For other video sources, see MOV to ICO or WebM to ICO.
Switch Frame Selection to Specific Frame and enter the timestamp in seconds. Decimals are supported — 5.25 means five-and-a-quarter seconds in. If you don't know the timestamp, scrub the MP4 in VLC or your video player, read the time at the bottom, and type that value. For Multiple Screenshots, the Capture Rate dropdown takes one frame every N seconds, so a 60-second clip at "every 5s" produces 12 ICOs.
Not directly from a video frame — MP4 video has no alpha channel, so the extracted frame has a solid background. To get transparency, extract to PNG first via MP4 to PNG, erase the background in an image editor (GIMP, Photopea, Photoshop), then convert the cleaned PNG to ICO using PNG to ICO. xconvert preserves alpha through PNG → ICO.
ICO is still required for full browser coverage. Modern Chrome, Firefox, Safari 12+, and Edge support SVG and PNG favicons via <link rel="icon" type="image/svg+xml"> and type="image/png">, but Internet Explorer, Edge legacy mode, and several site-aggregator scrapers (Slack unfurl, link-preview bots) still fall back to /favicon.ico at the site root. The standard 2026 recipe is: ICO at the root for fallbacks, plus SVG and 180×180 PNG (apple-touch-icon) for modern browsers and iOS.
xconvert's MP4-to-ICO tool focuses on frame extraction and resizing. For rotation, cropping, or color edits, extract to PNG first via MP4 to PNG, apply the edits in an image editor, then convert with PNG to ICO. For batch image-to-icon work without video involved, Image to ICO accepts JPG, PNG, WebP, and more.
No — .ico is a static format. Windows does not support animated icons in the .ico container; animated cursors use the related .ani format, and animated favicons are typically GIF or APNG, not ICO. For an animated thumbnail from MP4, see MP4 to GIF instead.