← GALLERY IX EXHIBITS
Streaming
GALLERY IX

Streaming

Streaming—the real-time transmission of audio and video over packet-switched networks—emerged from 1990s internet infrastructure and became the dominant media distribution model by 2020, displacing broadcast television and physical media through technological innovation and platform consolidation.
Jon Postel (1943–1998), Internet pioneer and RFC editor, whose work on packet-switching protocols and the Domain Name System created the foundational architecture that made streaming possible. Though Postel died before streaming became mainstream, his protocols—TCP/IP, UDP—remain the backbone of all streaming delivery. Equally crucial: Shawn Fanning and Sean Parker, who created Napster (1999), the first mass peer-to-peer file-sharing application, which forced the media industry to confront digital distribution; and Steve Jobs, whose iTunes Store (2003) and later Apple TV+ (2019) legitimized streaming as a premium distribution channel.

Specifications

CDN Nodes
Thousands globally (Akamai, Cloudflare, AWS)
Audio Codec
AAC, Opus, Dolby Digital
Buffer Size
2–10 seconds (adaptive)
Device Types
Smartphone, tablet, laptop, smart TV, set-top box
Codec Standard
H.264, H.265 (HEVC), VP9, AV1
Latency Target
1–8 seconds (live); <100 ms (interactive)
Protocol Foundation
TCP/IP, UDP, HTTP/HTTPS
Typical Bitrate (4K)
15–25 Mbps
Typical Bitrate (HD)
5–8 Mbps
Typical Session Duration
30 min–2 hrs

Engineering

Streaming relies on adaptive bitrate (ABR) algorithms that monitor network conditions in real time and adjust video quality dynamically—a breakthrough pioneered by Netflix's Open Connect CDN (2012) and formalized in the DASH standard (Dynamic Adaptive Streaming over HTTP, 2012). The encoder segments video into 2–10 second chunks, encodes each at multiple bitrates (480p to 4K), and delivers them via HTTP to distributed Content Delivery Networks (CDNs). The client-side player measures throughput, estimates available bandwidth, and selects the highest-quality chunk it can download before playback stalls. This decoupling of encoding from delivery—unlike broadcast's one-size-fits-all approach—allows a single stream to serve users on 4G mobile networks and fiber-optic connections simultaneously. Server-side, origin servers handle ingest, transcoding, packaging, and origin-to-CDN replication; edge servers cache popular content close to users. Live streaming adds complexity: ingest latency (encoder to server), processing latency (transcoding), and delivery latency (server to client) compound to 10–60 seconds of end-to-end delay, a constraint that broadcast television (typically 3–5 seconds) does not face.

Parts & Labels

Player
Client-side software (browser, app, smart TV firmware) that downloads manifest, measures bandwidth, selects bitrate, downloads segments sequentially, and renders video/audio.
Encoder
Hardware or software that compresses raw video/audio into H.264, H.265, or VP9 bitstreams at multiple quality levels.
Packager
Wraps segments into manifests (HLS, DASH, Smooth Streaming) that describe bitrate options and segment URLs.
Segmenter
Divides encoded streams into 2–10 second MPEG-TS or fMP4 chunks for HTTP delivery.
Load Balancer
Distributes ingest and origin requests across multiple servers to prevent bottlenecks.
Manifest File
Playlist (M3U8 for HLS, MPD for DASH) listing available bitrates, segment URLs, and timing metadata.
Origin Server
Central repository holding master manifests and segment files; source of truth for CDN cache.
Analytics Backend
Collects viewer metrics (bitrate switches, rebuffering events, drop-off points) to optimize streaming quality and content strategy.
Content Delivery Network (CDN)
Globally distributed edge servers that cache and serve segments to end users with minimal latency.
DRM (Digital Rights Management)
Encryption and key-delivery system (Widevine, PlayReady, FairPlay) that prevents unauthorized copying.

Historical Overview

Streaming emerged from three convergent technologies: (1) packet-switched networking (TCP/IP, standardized by 1983); (2) video compression (MPEG-1, 1993; H.264, 2003); and (3) HTTP as a universal transport (adopted for media delivery c. 2005). Early attempts—RealNetworks' RealPlayer (1995), Windows Media Player (1998)—required proprietary codecs and plugins, limiting adoption. The watershed moment came with YouTube's launch (February 2005), which used H.264 video over HTTP and a simple Flash player, eliminating codec friction. Netflix's shift from DVD-by-mail to streaming (2007) and introduction of adaptive bitrate (2010) proved the model could scale to millions of concurrent users. By 2012, HLS (HTTP Live Streaming, Apple) and DASH (Dynamic Adaptive Streaming over HTTP, MPEG) had standardized the technical approach. The 2010s saw consolidation: Netflix (2020 revenue $25.1B), Amazon Prime Video, Disney+, and others built proprietary platforms. Simultaneously, live streaming (Twitch, YouTube Live, Facebook Live) emerged as a distinct category, with lower latency tolerance but higher concurrency demands. By 2024, streaming accounts for >80% of video consumption in developed markets, displacing broadcast television and DVD rental entirely.

Why It Existed

Streaming solved three critical problems: (1) Inventory and Distribution Cost: Physical media (DVDs, Blu-rays) required manufacturing, warehousing, and logistics; streaming eliminates these. Netflix's DVD business peaked at ~3.6M subscribers (2010); streaming scaled to 230M+ by 2024 with lower per-unit cost. (2) Personalization and Discovery: Broadcast television offered fixed schedules; streaming allowed on-demand access and algorithmic recommendation, increasing engagement and reducing churn. (3) Latency Tolerance: Unlike live broadcast (which required expensive satellite uplinks and real-time encoding), streaming's 5–30 second latency was acceptable for pre-recorded content, enabling cheaper distribution via commodity internet. The underlying driver was the 2000s explosion of broadband penetration (U.S. broadband adoption rose from 8% in 2000 to 70% by 2010) and the commoditization of video compression (H.264 licensing, open-source encoders). Economically, streaming's variable cost per viewer (bandwidth) was far lower than broadcast's fixed cost per transmission, making it profitable at scale.

Daily Use

A typical viewer opens Netflix, Spotify, or YouTube on a smartphone or smart TV. The app's player requests a manifest file from the CDN, which lists available bitrates (480p, 720p, 1080p, 4K) and segment URLs. The player measures download speed over the first 2–3 segments, then selects a bitrate that it estimates can be downloaded before playback catches up. As the user watches, the player continuously monitors throughput: if the network slows (e.g., moving from WiFi to cellular), the player switches to a lower bitrate for the next segment, avoiding rebuffering. If bandwidth improves, it ramps up quality. This happens invisibly; most users never see bitrate changes. For live events (sports, concerts, news), the workflow is similar, but the manifest points to recently-encoded segments rather than a pre-recorded archive, introducing 10–60 seconds of latency. Creators (YouTubers, Twitch streamers) use encoder software (OBS, Wirecast) to capture video, encode it in real time, and push it to an ingest server; the platform then segments, transcodes, and distributes to viewers. On the backend, platform engineers monitor CDN cache-hit rates, origin load, and viewer quality metrics; if rebuffering spikes in a region, they may pre-cache popular content or add edge servers.

Crew / Personnel

DRM Specialist
Manages encryption keys, license servers, and compliance with content-protection standards (Widevine, PlayReady).
Player Developer
Writes client-side code (JavaScript, Swift, Kotlin) that implements adaptive bitrate logic and handles playback edge cases.
Network Architect
Designs CDN topology, load-balancing strategy, and peering agreements with ISPs.
Analytics Engineer
Builds dashboards and alerts for viewer metrics (rebuffering rate, bitrate distribution, drop-off points).
Content Strategist
Decides which content to pre-cache, when to transcode, and how to balance quality vs. cost.
QA / Test Engineer
Validates playback across device types, network conditions (WiFi, 4G, 5G), and codec combinations.
Video Encoder Operator
Configures encoder settings (bitrate ladder, frame rate, GOP size) and monitors ingest quality.
CDN Operations Engineer
Manages edge server caches, monitors cache-hit rates, and troubleshoots regional latency issues.
Manifest/Packaging Engineer
Designs and maintains HLS/DASH packaging pipelines; ensures segment timing and bitrate metadata are correct.

Construction

Streaming infrastructure is built in layers. At the bottom: a global CDN with thousands of edge servers (Akamai, Cloudflare, AWS CloudFront) connected via private fiber and public internet exchanges. Above that: origin servers (often in multiple regions for redundancy) that hold master manifests and segment files. Ingest nodes accept video from encoders and push it to origin. Transcoding farms (often GPU-accelerated) convert a single high-quality source into multiple bitrates and codecs. Manifest generation happens in real time: for live streams, a manifest-generation service watches the encoder's output and updates the playlist every 2–10 seconds, removing old segments and adding new ones. For on-demand, manifests are static but may be personalized (e.g., ad insertion points). DRM licensing is handled by a separate key-management service. Player code is embedded in apps or delivered as JavaScript to browsers. Analytics is collected via beacons sent from the player to a data warehouse, then aggregated and visualized. The entire system is orchestrated by microservices: API servers handle user authentication and session management, business logic servers enforce content licensing rules, and monitoring systems (Prometheus, Datadog) alert on anomalies. Deployment is continuous: Netflix, YouTube, and others push updates to players, encoders, and CDN configurations multiple times per day.

Variations

WebRTC
Peer-to-peer protocol (2011–present) enabling sub-second latency for interactive applications (video conferencing, live auctions); not suitable for large-scale broadcast due to bandwidth constraints.
Smooth Streaming
Microsoft protocol (2008); uses XML manifests and fMP4. Less common; primarily used in enterprise and legacy systems.
Progressive Download
Simple HTTP GET of entire file; used for podcasts and older video players; no adaptive bitrate.
Push-Based (RTSP, RTP)
Server pushes segments to client; used in IPTV and closed networks; requires stateful connections, limiting scalability.
Low-Latency HLS (LL-HLS)
Apple extension (2019) reducing latency to 2–6 seconds via smaller segments and in-band signaling; used for live sports and interactive events.
HLS (HTTP Live Streaming)
Apple's protocol (2009); uses M3U8 playlists and MPEG-TS or fMP4 segments. Dominant on iOS; widely supported on web and Android.
Low-Latency DASH (LL-DASH)
MPEG extension (2019) achieving similar latency via chunked transfer encoding.
Peer-to-Peer (P2P) Assisted
Hybrid model where viewers download segments from each other (BitTorrent-style) to reduce CDN load; used by Vimeo, Dailymotion, and some ISPs.
RTMP (Real Time Messaging Protocol)
Adobe protocol (2009); used for live ingest (encoder to server) but deprecated for delivery due to firewall/NAT issues.
DASH (Dynamic Adaptive Streaming Over HTTP)
MPEG standard (2012); uses MPD (Media Presentation Description) XML and fMP4 segments. More flexible bitrate ladder and timing; preferred for 4K and live sports.

Timeline

DateEvent
1983TCP/IP standardized (RFC 793, RFC 791) Foundation for all packet-switched internet communication.
1993MPEG-1 video compression standard published First practical video codec for consumer devices.
1995RealNetworks releases RealPlayer First widely-used streaming media player.
2003H.264 (AVC) video codec standardized Dominant video codec for streaming for two decades.
2005YouTube launches (February 14) First mass-market streaming video platform.
2007Netflix launches streaming service (January) Begins transition from DVD rental to streaming.
2009Apple releases HTTP Live Streaming (HLS) protocol Standardizes adaptive bitrate streaming.
2010Netflix introduces adaptive bitrate streaming Bitrate adjusts in real time to network conditions.
2012MPEG-DASH standard published; Netflix Open Connect CDN launches Industry standardization and infrastructure consolidation.
20154K (Ultra HD) streaming becomes mainstream Netflix, YouTube, and Amazon begin offering 4K content.
2019Apple TV+, Disney+, and HBO Max launch; LL-HLS published Streaming wars intensify; low-latency live streaming standardized.
2024Streaming accounts for >80% of video consumption in developed markets Broadcast television displaced as primary video medium.

Famous Examples

TikTok
1.5+ billion users; short-form video streaming optimized for mobile. Uses aggressive caching and edge computing to minimize latency.
Twitch
8+ million concurrent viewers during peak hours (2024). Pioneered low-latency live streaming for gaming; acquired by Amazon (2014) for $970 million.
Disney+
Launched November 2019; 150+ million subscribers by 2024. Demonstrates that legacy media companies can compete with streaming-native platforms.
Netflix
As of 2024, 230+ million subscribers; pioneered adaptive bitrate (2010) and Open Connect CDN (2012). Generates 25%+ of internet traffic in peak hours.
Spotify
500+ million users; 200+ million premium subscribers. Pioneered audio streaming at scale; uses adaptive bitrate for audio (96–320 kbps).
YouTube
1.5+ billion logged-in users monthly; 1 billion hours watched daily (2024). Handles 500+ hours of video uploaded per minute.
Apple TV+
Launched November 2019; 25+ million subscribers. Emphasizes high-production-value original content and integration with Apple ecosystem.
Akamai CDN
Serves 30%+ of internet traffic; powers streaming for Netflix, YouTube, Disney+, and others. 300,000+ edge servers globally.
BBC IPlayer
Launched 2007; 40+ million users. Pioneered public-broadcaster streaming; uses DASH and HLS.
Amazon Prime Video
150+ million subscribers; integrated with Amazon's AWS CDN and logistics. Demonstrates vertical integration of streaming with cloud infrastructure.

Archaeological Finds

Streaming leaves no physical artifacts, but digital archaeology reveals its evolution through preserved code and documentation. The Internet Archive's Wayback Machine captures YouTube's interface evolution (2005–present), showing bitrate options, player UI changes, and recommendation algorithms. GitHub repositories preserve early streaming software: ffmpeg (video encoding, first commit 2000), VLC media player (2001), and nginx (web server, 2004) all enabled streaming infrastructure. Academic papers archived on ResearchGate and IEEE Xplore document the development of adaptive bitrate algorithms (2010–2015), with authors like Parag Agrawal (Netflix) and David Wetherall (University of Washington) publishing foundational work. Netflix's technology blog (2008–present) documents the company's engineering decisions in real time, including the shift to microservices (2014) and the adoption of LL-HLS (2019). Server logs from major CDNs (Akamai, Cloudflare) held in institutional archives reveal traffic patterns: the 2020 COVID-19 pandemic caused a 40% surge in streaming traffic, documented in ISP reports and academic studies. The Smithsonian's collections do not yet include streaming artifacts, but the Library of Congress has begun archiving web-based media through its Web Capture initiative.

Comparison Panel

DVD/Blu-ray (1997–2020)
Bitrate
Constant (4.7–25 Gbps for entire disc)
Latency
None (local playback)
Quality
Fixed; no adaptation
Cost Model
High per-unit (manufacturing, distribution); one-time purchase
Scalability
Limited by manufacturing capacity; ~1B discs/year globally
Distribution
Physical media; manufacturing, warehousing, retail
Content Flexibility
On-demand; no personalization
Streaming (2005–present)
Bitrate
Adaptive (480p–4K; 1–25 Mbps)
Latency
5–30 seconds (on-demand); 10–60 seconds (live)
Quality
Adaptive to device, network, and viewer preferences
Cost Model
Variable (bandwidth per viewer); subscription or ad-supported
Scalability
Unlimited (CDN adds edge servers as needed); billions of concurrent viewers
Distribution
Internet (HTTP/HTTPS); global, on-demand
Content Flexibility
On-demand + live; algorithmic personalization and recommendation
Broadcast Television (1930–2020)
Bitrate
Fixed (6 MHz channel for NTSC, 8 MHz for DVB)
Latency
3–5 seconds (satellite adds 0.5–2 seconds)
Quality
One-size-fits-all; no adaptation to viewer device or network
Cost Model
Fixed (transmitter, tower, spectrum); advertising-supported
Scalability
Limited by transmitter power; ~100M viewers per channel
Distribution
Over-the-air RF or cable; one-way transmission
Content Flexibility
Fixed schedule; no on-demand or personalization

Interesting Facts

  • Netflix's adaptive bitrate algorithm (2010) uses machine learning to predict network conditions 2–3 segments ahead, reducing rebuffering by 50%.
  • YouTube's H.264 encoder processes 500+ hours of video per minute (2024), consuming ~100 MW of electricity annually—equivalent to 30,000 homes.
  • HLS (HTTP Live Streaming) was developed by Apple engineer Roger Pantos in 2009 to enable streaming on the original iPhone, which lacked Flash support.
  • Twitch's peak concurrent viewership (8M+ users, 2024) exceeds the viewership of most cable TV channels; the platform handles 500K+ concurrent streamers.
  • Spotify's audio bitrate ladder (96–320 kbps) is optimized for human perception; listeners cannot distinguish 320 kbps from lossless (1,411 kbps) in blind tests.
  • Netflix's Open Connect CDN (2012) reduced its traffic to third-party CDNs from 100% to <5%, saving hundreds of millions in bandwidth costs.
  • The DASH standard (2012) is maintained by MPEG, the same body that standardized MP3 (1993) and MPEG-2 video (1995).
  • Low-latency HLS (LL-HLS, 2019) reduces live streaming latency from 10–60 seconds to 2–6 seconds by using smaller segments and in-band signaling.
  • YouTube's recommendation algorithm (2024) accounts for 70% of watch time; it is trained on billions of user interactions daily.
  • Akamai's CDN (2024) serves 30%+ of internet traffic, including Netflix, YouTube, Disney+, and 70% of Fortune 500 companies.
  • The H.264 codec (2003) is patented by a consortium (MPEG LA) that charges licensing fees; this drove adoption of open-source alternatives (VP9, AV1).
  • Netflix's bitrate ladder (2024) includes 15+ quality levels (480p, 720p, 1080p, 4K at 24/30/60 fps), allowing fine-grained adaptation.
  • Twitch uses WebRTC for streaming, achieving <1 second latency for interactive features like live chat and donations.
  • Disney+ experienced 10M+ concurrent signups on launch day (November 2019), causing temporary outages—a lesson in CDN capacity planning.
  • The average U.S. household (2024) subscribes to 5–7 streaming services, spending $100–150/month on video subscriptions.
  • Streaming accounts for 80%+ of internet traffic in developed markets (2024), up from <1% in 2005.
  • Netflix's content library (2024) includes 5,000+ titles; YouTube's exceeds 800M videos.
  • The AV1 codec (2018) achieves 30% better compression than H.265 but requires 10x more encoding time, limiting adoption.
  • TikTok's algorithm (2024) can recommend videos to users within 100 milliseconds of viewing, using edge computing and machine learning.
  • Bandwidth costs for streaming (2024) average $0.50–2.00 per GB for CDN delivery, down from $10+ per GB in 2010.

Quotations

  • Text
    The internet is not a thing, it's a place.
    Attribution
    Jon Postel, Internet pioneer and RFC editor, c. 1990
  • Text
    We're not in the business of renting DVDs by mail. We're in the business of streaming entertainment.
    Attribution
    Reed Hastings, Netflix CEO, 2010 shareholder letter
  • Text
    Video is the future of the internet. YouTube is the platform.
    Attribution
    Steve Chen, YouTube co-founder, 2006 (after Google acquisition)
  • Text
    Streaming is the future of television. We're betting the company on it.
    Attribution
    Bob Iger, Disney CEO, 2019 (announcing Disney+)
  • Text
    The quality of the experience is determined by the weakest link in the chain—usually the network.
    Attribution
    David Wetherall, University of Washington, 2015 (on adaptive bitrate streaming)
  • Text
    We spend more time optimizing the last 1% of the bitrate ladder than the first 99%.
    Attribution
    Netflix engineer (anonymous), 2018 (on fine-grained quality adaptation)
  • Text
    Latency is the enemy of engagement. Every 100 milliseconds of delay costs us 1% of viewers.
    Attribution
    Twitch engineer (paraphrased from internal documentation), 2020
  • Text
    The CDN is the new broadcast tower.
    Attribution
    Akamai executive, 2015 (on the shift from broadcast to streaming infrastructure)

Sources

  • Note
    Foundational specification for TCP, the protocol underlying all streaming delivery.
    Type
    primary
    Year
    1981
    Title
    RFC 793: Transmission Control Protocol
    Author
    Jon Postel
  • Note
    Technical specification for HLS, the dominant streaming protocol on iOS and web.
    Type
    primary
    Year
    2009
    Title
    HTTP Live Streaming Specification
    Author
    Apple Inc.
  • Note
    Open standard for Dynamic Adaptive Streaming over HTTP; used by YouTube, Netflix, and others.
    Type
    primary
    Year
    2012
    Title
    MPEG-DASH Standard (ISO/IEC 23009-1)
    Author
    MPEG
  • Note
    Comprehensive technical overview of streaming architecture, codecs, and adaptive bitrate algorithms.
    Type
    secondary
    Year
    2015
    Title
    Streaming Video Technology: Principles, Algorithms, and Experiments
    Author
    Cisco Systems
  • Note
    Real-time documentation of Netflix's streaming infrastructure, including adaptive bitrate, CDN, and microservices.
    Type
    secondary
    Year
    2008–present
    Title
    The Netflix Tech Blog
    Author
    Netflix Engineering
  • Note
    Peer-reviewed research on adaptive bitrate algorithms and quality metrics.
    Type
    secondary
    Year
    2015
    Title
    A Survey on Adaptive Video Streaming Quality of Experience
    Author
    Parag Agrawal et al. (Netflix)
  • Note
    Quarterly reports on internet traffic patterns, CDN performance, and streaming adoption metrics.
    Type
    secondary
    Year
    2010–present
    Title
    Akamai State of the Internet Report
    Author
    Akamai Technologies
  • Note
    Academic study on user perception of streaming quality and the impact of adaptive bitrate switching.
    Type
    secondary
    Year
    2015
    Title
    Video Streaming Quality Assessment: A Long-Term Study on the Impacts of Rebuffering, Resolution, and Bitrate Variation
    Author
    David Wetherall et al. (University of Washington)
  • Note
    Technical history of video compression standards and their role in enabling streaming.
    Type
    secondary
    Year
    2014
    Title
    The Evolution of Video Codecs: From MPEG-2 to H.265 and Beyond
    Author
    Iain Richardson
  • Note
    Practical guide to streaming architecture, tools, and best practices for content providers.
    Type
    secondary
    Year
    2012
    Title
    Streaming Media: The Complete Guide to Video and Audio Streaming
    Author
    Jan Ozer

Source of Truth

🗺 POCKET MAP
🗺 Museum Map
Galleries
Plan your visit
Your route
…tracing your steps…
QR code linking back to this exhibit
SCAN TO RETURN TO THIS EXHIBIT