Initializing... drag & drop files here
Supports: TS
TS (MPEG Transport Stream) is the container used for digital broadcast, IPTV, HLS streaming, and many DVR / camcorder recordings. It carries H.264 or H.265 video alongside AAC, AC3, or MP2 audio in a packetized format designed to survive transmission errors. Great for delivery; awful for a phone audio library. M4B is Apple's MPEG-4 audiobook container — same AAC audio inside, but with a metadata profile that flags the file as an audiobook so iOS, macOS, and dedicated audiobook apps treat it correctly (chapter list, resume-where-you-left-off, sleep timer, variable speed). Common reasons to convert TS → M4B:
| Property | TS (MPEG Transport Stream) | M4B (MPEG-4 Audiobook) |
|---|---|---|
| Container purpose | Broadcast / streaming / DVR delivery | Audiobook playback on Apple ecosystem |
| Typical contents | H.264/H.265 video + AAC/AC3/MP2 audio | AAC audio only, plus chapter metadata |
| Typical size (1 hour) | 800 MB - 2 GB (video included) | 30-90 MB (audio only) |
| Chapter markers | None (PAT/PMT only, not user chapters) | Built-in chapter tracks with titles + timestamps |
| Resume / bookmark | No (player-dependent) | Yes, persisted in the file's metadata namespace |
| Apple Books recognition | No | Yes, imports as an audiobook automatically |
| Best for | DVR captures, HLS segments, broadcast | Long-form spoken-word, audiobooks, lectures |
| Bitrate | Channels | File size (10-hour book) | Use case |
|---|---|---|---|
| 32 kbps | Mono | ~140 MB | Aggressive — voice only, talk-radio tolerable |
| 64 kbps | Mono | ~280 MB | Recommended for narration / audiobooks |
| 96 kbps | Mono | ~415 MB | Higher-fidelity narration, occasional music |
| 128 kbps | Stereo | ~555 MB | Podcasts with music, lectures with samples |
| 192 kbps | Stereo | ~830 MB | Music-heavy content, near-transparent |
| 256 kbps | Stereo | ~1.1 GB | Overkill for spoken word; use for music albums |
Yes — M4B is an audio-only container, so the H.264/H.265 video stream from the TS gets dropped during conversion and only the audio elementary stream is kept. The audio is transcoded from its source codec (typically AAC, sometimes AC3 or MP2 in older DVR captures) to AAC and packaged inside the M4B container. If you want to keep the video too, use TS to MP4 instead. If you just need to trim a long M4B down to a clip after conversion, Audio Cutter accepts M4B input directly.
M4B and M4A use the exact same AAC audio codec — the only difference is the file flag and metadata profile. iOS, macOS, and Apple Books look at the M4B flag and treat the file as an audiobook: it goes in the Books library (not Music), it gets variable-speed playback (1.5×, 2×), it remembers your position even after months away, and it surfaces in CarPlay's audiobook section. An identical M4A file becomes "background music" and behaves badly. MP3 has no chapter or resume support at all.
Not yet during conversion itself — xconvert produces a single-segment M4B with the file as one chapter. To add chapter markers, convert to M4B here, then open the file in a free desktop tool like Audiobook Builder (Mac) or mp4chaps from the mp4v2 package to embed chapter timestamps and titles. If your source TS is actually multiple segments you want as chapters, convert each to M4B and merge them with an audiobook-aware tool — they preserve segment boundaries as chapters.
Yes on macOS and iPadOS — drop the M4B into the Books app or sync from Finder and it lands in the Audiobooks tab with cover art and resume support. iPhone is trickier in 2025/2026: Apple removed direct sideloading from the Books app for some setups, so you may need to add the file to Books on Mac first, then iCloud-sync to iPhone, or use a third-party reader like BookPlayer that accepts files directly via Files / AirDrop.
64 kbps mono AAC is the sweet spot for narration. It sounds clean for voice, keeps a 10-hour book around 280 MB, and matches what commercial audiobook services like Audible historically used for standard quality. Drop to 32 kbps mono if storage is extremely tight (older iPhones, smartwatches) — it's audible but tolerable for talk content. Stay stereo at 96-128 kbps only if the recording has significant music or environmental sound you care about.
Almost certainly. Most 4 GB TS captures are 1-2 hours of HD video + audio. As 64 kbps mono M4B, 2 hours of audio is ~55 MB — well inside iCloud's free 5 GB tier and trivial for Drive's 15 GB. The size reduction comes from dropping video, not from compressing audio.
Two common causes. (1) Your player ignores the .m4b extension and treats it as music — Apple Music app on iOS does this; switch to Apple Books or a dedicated audiobook reader. (2) The file's internal ftyp brand was set to M4A_ instead of M4B_. xconvert sets M4B_ correctly, but if you renamed an M4A to .m4b after the fact, Books won't recognize it. Reconvert through xconvert to fix.
Yes — see MP3 to M4B for the most common audiobook-prep flow (folder of MP3 chapters → single audiobook), or the reverse direction M4B to MP3 if you need to export an audiobook to a player that doesn't understand M4B. TS is just one of dozens of supported input formats — the M4B output behavior is identical regardless of source.