Initializing... drag & drop files here
Supports: TS
.ts files from your DVR, IPTV recording, HLS download, or camcorder capture. Batch conversion is supported.An MPEG-TS (.ts) is a transport-stream container — the ISO/IEC 13818-1 format standardized in 1995 for broadcast, IPTV, and Blu-ray that wraps video plus one or more audio tracks (typically AAC, AC-3, MP2, or E-AC-3) into 188-byte packets. WAV is the opposite: an uncompressed PCM container that holds the raw audio sample-for-sample with no codec layer in between. Converting TS to WAV strips the video, demuxes the audio track, and re-encodes it as linear PCM so any DAW, editor, transcription tool, or analysis script can read it without the original codec dependency.
.ts segments downloaded from HLS streams (each typically 2-10 seconds long) often arrive as concatenated chunks. Demuxing once to WAV gives you a single lossless master you can later re-encode to FLAC, MP3, or AAC without compounding generation loss..ts (or .m2ts) clips. Audio tracks land in AC-3 or LPCM that some NLEs handle poorly on import — WAV is the universal fallback.| Property | TS (MPEG Transport Stream) | WAV (PCM) |
|---|---|---|
| Standard | ISO/IEC 13818-1 (1995, latest 2022) | Microsoft / IBM RIFF, 1991 |
| Container vs codec | Container — wraps video + audio + metadata | Container — almost always raw PCM |
| Typical audio inside | AAC, AC-3, MP2, E-AC-3, MP3 | LPCM (also supports A-law, mu-law) |
| Compression | Lossy (codec-dependent) | None — sample-accurate |
| Packet structure | 188-byte packets with sync byte | Single chunked file, no packetization |
| Common sources | DVB / ATSC broadcast, AVCHD camcorders, HLS, Blu-ray | DAW exports, CD rips, field recorders |
| 1 minute @ 1080p / 16-bit 44.1 kHz stereo | ~30-60 MB (video dominates) | ~10 MB (audio only) |
| Best for | Broadcast, streaming, recording | Editing, mastering, archiving |
| Browser playback | None natively | Chrome, Firefox, Edge, Safari all play WAV |
| Use case | Sample rate | Bit depth | Channels | Resulting size (1 min) |
|---|---|---|---|---|
| Speech-to-text (Whisper, Otter) | 16,000 Hz | 16-bit | Mono | ~1.9 MB |
| Podcast / interview editing | 44,100 Hz | 16-bit | Stereo | ~10 MB |
| Music mastering / DAW work | 48,000 Hz | 16-bit | Stereo | ~11 MB |
| Broadcast / film deliverable | 48,000 Hz | 24-bit | Stereo | ~16.5 MB |
| Archival master | 96,000 Hz | 24-bit | Stereo | ~33 MB |
Tip: WAV uses the RIFF chunk header, which caps a single file at ~4 GB (32-bit size field). For longer recordings, output to RF64 / W64 or split into segments — typically only an issue beyond ~6 hours of 16-bit/44.1 kHz stereo.
TS is a transport-stream container designed to multiplex video and one or more audio tracks together — most .ts files originated from a recording of a TV broadcast, HLS stream, or AVCHD camcorder. Our converter demuxes the audio track and discards the video automatically, so you get a clean WAV with only the sound.
Use 16,000 Hz / 16-bit mono. OpenAI's Whisper resamples every input to 16 kHz internally, and Google Cloud Speech-to-Text recommends 16 kHz LINEAR16 mono as the optimal input. Anything higher just inflates the upload without improving accuracy. Pick "Mono" under Audio Channel and "16000Hz" under Audio Sample Rate.
The conversion to WAV (PCM) is lossless, but the audio inside the TS is usually already lossy (AAC or AC-3 from a broadcast). You can't recover information that wasn't there — you can only preserve what is. WAV will not degrade the source further, but it also won't make a 128 kbps AAC broadcast sound like a CD master.
Use the Trim option under Advanced Options. Set the start time (e.g. 00:01:45.000) and duration (e.g. 00:00:30.000), then convert. The output WAV will contain only that range — useful for clipping the punchline from a recorded talk show or a single song from a radio capture without trimming in a separate editor afterward.
Because TS audio is compressed (typically AAC or AC-3 at 128-384 kbps) and WAV is uncompressed PCM (1,411 kbps for 16-bit 44.1 kHz stereo, 2,304 kbps for 24-bit 48 kHz stereo). Expect ~10 MB per minute for CD-quality stereo WAV versus ~1-3 MB per minute for the source AAC track. If size matters, use TS to MP3 or TS to FLAC instead — FLAC gives you lossless compression at roughly half the WAV size.
Yes. Upload several .ts files at once and the quality preset, channel, sample rate, and trim settings apply to every file in the batch. Each finished WAV is downloaded individually or as a zip.
.m2ts and .mts AVCHD files too?Those are sibling formats (BDAV / AVCHD transport streams with longer 192-byte packets) but use separate xconvert pages: see MTS to WAV and M2TS to WAV. The conversion logic is the same — only the input extension differs.
The free tier is enforced per session rather than a hard byte cap published on the page — practically, multi-gigabyte broadcast recordings work. If a large transcoding job stalls, try splitting the source first or trim before converting to extract only the segment you need.
No. The conversion runs server-side and the page is plain HTML/JS — works on Chrome, Firefox, Edge, and Safari 14+ on macOS, Windows, iOS, Android, and Linux. If you'd rather work locally, FFmpeg's ffmpeg -i input.ts -vn -c:a pcm_s16le output.wav does the same job offline.