Streaming Architectures: HLS, DASH, and RTMP
Streaming Architectures: HLS, DASH, and RTMP Streaming architectures describe how video travels from a creator to the viewer. The three common paths today are HLS, DASH, and RTMP. Each has a role in modern workflows, from the moment you start encoding to the moment the viewer sees the video. Overview of the three options helps you pick the right setup. HLS: Apple’s HTTP Live Streaming uses M3U8 playlists and small media segments. It plays well on iPhones, iPads, and many browsers. It is easy to scale with a CDN and works with common encoders. DASH: Dynamic Adaptive Streaming over HTTP uses an MPD manifest. It supports CMAF packaging and broad device coverage. DASH is popular in broadcast and OTT services that want vendor flexibility. RTMP: Real-Time Messaging Protocol is used for live ingest from encoders to a media server. It has low end‑to‑end latency, but it’s not a direct delivery method for browsers. Most workflows repackage RTMP into HLS or DASH for playback. How they fit together in a typical setup ...