Initializing... drag & drop files here
Supports: WTV
.wtv recording or click "+ Add Files" to select it. Batch is supported, so you can queue several Windows Media Center recordings at once..ico. Files are uploaded over an encrypted connection, processed on our servers, and deleted automatically after a few hours — no sign-up, no watermark, never shared.WTV is the proprietary container Windows Media Center used to record live TV on Vista and Windows 7. Inside it sits MPEG-2 or MPEG-4 video and MPEG-1 Layer II or AC-3 audio, plus DRM and broadcast metadata. ICO is the Windows icon format — a small container that can hold the same image at several pixel sizes, encoded as either BMP or PNG, which Windows picks between based on display DPI. Going WTV to ICO means "grab a still from a TV recording and turn it into a desktop or favicon."
.ico file. A frame from your favourite show or holiday recording makes the folder instantly recognisable in File Explorer at any view size..lnk to the taskbar, then swap its icon for a still from the show or game footage you captured in Media Center..wtv is increasingly hard to play. Extracting one frame as an icon preserves a recognisable visual without keeping the multi-gigabyte recording around.favicon.ico for legacy fallbacks and Windows tile pinning. A 16/32/48 multi-resolution ICO covers Chrome's address bar, Edge tab strip, and pinned-site behaviour from a single file..ico for branding; a frame from the content they play (a sports broadcast, a kids' show) is more memorable than the default.| Property | WTV (Windows Recorded TV) | ICO (Windows Icon) |
|---|---|---|
| Type | Video container | Container for multiple still images |
| Vendor | Microsoft (Windows Media Center) | Microsoft (Windows shell) |
| Introduced | TV Pack 2008 for Vista; Windows 7 | Windows 1.0 (1985), modernised in Vista |
| Inside the file | MPEG-2 or MPEG-4 video + MPEG-1 Layer II / AC-3 audio + DRM/EPG metadata | One or more BMP or PNG bitmaps + a directory index |
| Typical size | Gigabytes per hour of HD recording | Kilobytes to a few hundred KB |
| Max dimensions | 1080p / 1080i broadcast | 256×256 px per image (1×1 minimum) |
| Bit depth | 8-bit Rec.709 video | 1 / 4 / 8 / 24 / 32-bit (32-bit alpha since Windows XP) |
| Played / used by | Windows Media Center; ffmpeg-based players | Windows shell, browsers (favicon.ico) |
| Status | Discontinued with Windows 10 (2015) | Still the native Windows icon format |
| Use case | Sizes to include | Notes |
|---|---|---|
| Application / Control Panel icon | 16, 32, 48, 256 | Microsoft's Win32 icon guide recommends this full set; code scales between 32 and 256. |
| Classic Mode app icon | 16, 24, 32, 48, 64 | Used when Aero/composition is disabled. |
| Toolbar icon | 16, 24, 32 | Always front-facing (flat), no perspective. |
| Dialog / wizard icon | 32, 48 | — |
favicon.ico for the web |
16, 32, 48 | Covers browser tab, bookmark bar, and Windows pinned-site tile. |
| High-DPI desktop / 4K | Include 256 (PNG-compressed) | Microsoft recommends storing the 256×256 image as PNG inside the ICO to keep file size down. |
Yes — that's the whole point of the format. An ICO is a directory of images: Microsoft's Win32 guidance recommends 16×16, 32×32, 48×48, and 256×256 in the same file so Windows can pick the right one for the current display DPI and view (small icons, large icons, tiles). When you set Image Resolution to 256P here, the converter outputs the largest standard slot; downscaled variants are generated by Windows from that image, or you can run the conversion several times at different sizes and merge with an icon editor.
Whichever one reads clearly at 16×16. Title cards, single-subject close-ups, and high-contrast logos work; busy crowd shots or wide landscape scenes lose their meaning when scaled down. Use Multiple Screenshots to pull, say, one frame every 10 seconds across the recording, then open the resulting images and pick the cleanest. Microsoft's own guidance is that small icons "must clearly show the key point" — detail that survives the 16×16 squeeze.
You can, but .wtv files frequently include DRM flags from cable or over-the-air recordings, and Media Center may black out the video output to the screen-capture tool. Extracting a frame directly from the container avoids the playback path and the DRM-aware overlay surface. If your recording is from an encrypted source you may still hit issues — try a clean OTA recording first.
Both encodings are valid. ICO files store images either as headerless BMP data or as full PNG data, and Windows has read PNG-inside-ICO since Vista. Microsoft explicitly recommends storing 32-bit 256×256 images as PNG to keep file size down — a 256×256 32-bit BMP is ~256 KB, the same image as PNG is typically 10-50 KB.
Only if you add it. A frame extracted from a video is opaque by nature — every pixel has colour data. ICO supports 32-bit images with an 8-bit alpha channel (since Windows XP), so you can post-process the still in an image editor to knock out a background, then save back as .ico with transparency. For a quick path, convert the WTV frame to PNG first via WTV to PNG, edit the alpha there, then use PNG to ICO for the final container.
Aim for at least 256×256 px so the largest icon slot is sharp. WTV recordings of HD broadcasts are 1280×720 or 1920×1080, which is more than enough; SD recordings (720×480 NTSC, 720×576 PAL) are still fine for 256×256 if you crop to a square. Avoid upscaling — interpolation artefacts become much more visible after the icon is downscaled to 16×16 by the shell.
Yes. Drop the file at your site root as favicon.ico and most browsers will discover it without an HTML reference. For best coverage include 16, 32, and 48 in the same .ico (browsers and Windows pinned tiles pick different sizes). Modern sites also serve PNG icons via <link rel="icon">, but a multi-resolution favicon.ico is still the safest fallback. If you just need PNG icons for <link rel="icon"> tags, convert WTV to PNG instead.
Two common causes. First, DRM — broadcast flags on the recording can block frame access even when playback works inside Media Center. Second, MPEG-4 video inside .wtv (later recordings) sometimes needs different decoders than MPEG-2 (earlier recordings); if the converter can't decode the chosen timestamp, try a different time value or convert the recording to MP4 first via WTV to MP4 and grab the frame from that.
Not really. Windows 11 still uses .ico for shortcut and folder icons (Properties → Change Icon dialog only accepts .ico, .exe, and .dll). PNG is fine as a source for editing but the shell does not accept a .png directly when you change a shortcut's icon. Stick with .ico for desktop / Start Menu / taskbar use; use PNG only when an app explicitly asks for it.