Initializing... drag & drop files here
Supports: TS
.ts rips, satellite receiver dumps, and HLS segment grabs from youtube-dl / yt-dlp all work. Batch is supported — drop in a whole season's worth of recordings at once.TS (MPEG-2 Transport Stream) is the container broadcast TV, IPTV, ATSC over-the-air, and DVB satellite have all used since the late 1990s. It's designed to survive packet loss on noisy transmission paths, which is why every DVR, set-top box, HDHomeRun, and IPTV recorder writes .ts files. AVI (Audio Video Interleave) is Microsoft's 1992 container — older, simpler, and supported by virtually every legacy Windows tool, hardware DVD player, and offline media appliance ever shipped. Common reasons to convert TS → AVI:
.ts. Converting to AVI gives a single self-contained file you can drop on a NAS, USB drive, or Plex library without TS's PAT/PMT/PCR overhead..ts as a video file at all. AVI is still the lowest-common-denominator format for offline hardware. See also TS to MP4 for modern device targets and TS to MKV for lossless remuxing.| Property | TS (Transport Stream) | AVI |
|---|---|---|
| Origin | MPEG-2 Systems (ISO/IEC 13818-1, 1996) | Microsoft (1992) |
| Designed for | Broadcast, satellite, IPTV, error-resilient transmission | File-based playback on Windows |
| Common video codec | MPEG-2, H.264, occasionally HEVC | DivX, Xvid, MPEG-4 ASP, MPEG-2, MJPEG |
| Common audio codec | AC-3 (Dolby Digital), AAC, MP2 | MP3, AC-3, PCM, MP2 |
| Multiple programs | Yes — multiplexed PAT/PMT/PCR streams | No — single program per file |
| Error resilience | High — designed for lossy transmission | Low — corrupts easily |
| DVD / set-top hardware | Limited — newer hardware only | Wide — most 2005-2015 hardware |
| Modern browser support | None | None |
| Best for | Capture, broadcast, streaming segments | Legacy hardware, older Windows editors |
| Codec | File size | Hardware compatibility | Best for |
|---|---|---|---|
| DivX | Smallest of the AVI codecs | Wide — DVD players, smart TVs, car units 2005+ | Default — best size/compatibility balance |
| Xvid | Same as DivX (~) | Same as DivX, slightly less hardware-certified | Open-source equivalent of DivX |
| MPEG-4 ASP | Slightly larger than DivX/Xvid | Universal — every AVI player accepts it | Maximum legacy compatibility |
| MPEG-2 | 2-3x larger | Universal | Minimize re-encoding loss from MPEG-2 TS source |
| H.264 | Smallest overall | Patchy — modern AVI players only | Modern player, smaller file in legacy container |
| MJPEG | Very large | Universal but rarely used | Frame-accurate editing in legacy NLEs |
TS streams from DVRs and IPTV captures often record multi-hour blocks (a 4-hour football game, an overnight DVR session, a back-to-back-episode marathon) as a single .ts. Re-encoding to AVI gives you a clean, splittable, indexable file. Use Time Range trim to slice out the segment you actually want — the rest of the recording is dropped during conversion.
Yes. Default Windows Media Player on Windows 10/11 doesn't ship with a TS demuxer or an MPEG-2 decoder. Re-encoding to AVI with DivX or Xvid produces a file WMP plays out of the box on the same machine — no codec packs, no K-Lite, no VLC required.
DivX for default playback on standalone DVD players and smart TVs from 2005-2015 — the codec those devices were certified against. Xvid is the open-source twin: identical compression, slightly less hardware certification, no licensing implications. MPEG-4 ASP for the absolute widest legacy compatibility — every AVI player ever made accepts it, at a small size cost vs DivX/Xvid.
Yes — pick AC-3 as the audio codec output to keep the original Dolby Digital track bit-for-bit. Default is MP3 (smaller, universally supported), which downmixes 5.1 to stereo. For HTPC or home-theater playback off the AVI, AC-3 preserves the surround mix; for laptop / USB-stick playback in a car, MP3 stereo is usually what you want.
ATSC over-the-air captures often contain a primary HD program plus SD subchannels (e.g., a network feed + a weather subchannel) multiplexed in one .ts. The converter selects the primary video and audio program by default and writes a single-program AVI. If you need a specific subchannel, demux the TS first with a tool like Project X or ffmpeg -map, then convert the extracted program to AVI here.
Multi-hour DVR captures (4-8 GB transport streams) work. Conversion happens in your browser session, so the practical limit is your device's available memory and patience for the upload. For very long broadcasts, trim first with Time Range to extract the part you need — converting a 30-minute slice of a 6-hour recording is dramatically faster than converting the whole thing.
There's a small re-encoding loss any time you change codecs. At Quality Preset Very High (the default) the difference is invisible at typical viewing distances. To minimize loss, pick MPEG-2 as the AVI video codec — it keeps the source codec and only re-wraps the container, which is nearly lossless. Trade-off: MPEG-2 inside AVI is 2-3x larger than DivX/Xvid.
AVI is the legacy / hardware-compatibility target — DVD players, older Windows tools, 2010-era HTPCs. MP4 is the modern target — phones, browsers, smart TVs from 2018+, every cloud service. Pick AVI when the destination device is older than ~2015. For everything else, TS to MP4 is the better landing page.