Where Your Battery Goes During Video Playback: Screen, Radio, Decode — Ranked by Drain

We logged power draw component-by-component during one hour of playback. The screen isn't the biggest drain everyone assumes — and the fix is a single setting.

“Video drains my battery” is true but useless — the question is which part of playback does the draining, because they don’t drain equally and some are trivially fixable.

We logged per-component power draw during a controlled hour of 720p playback on a mid-range phone. Here’s what the instrumentation showed.

Component Breakdown (720p Stream, Mid-Range Phone)

Component        │ Share of drain │ What's happening
─────────────────┼────────────────┼────────────────────────────────
Cellular radio   │     ~38%       │ Fetching segments, keepalive
Display          │     ~27%       │ Panel brightness × on-time
Video decode     │     ~19%       │ SoC decoder block (or CPU!)
CPU/GPU/UI       │      ~9%       │ App logic, OS overhead
Audio            │      ~7%       │ Codec + speaker/amp

The Radio Wins (Loses)

Cellular dominates because it’s always on — the modem keeps the connection alive between segment fetches, and signal strength determines how hard it works. On weak-signal commutes (trains, rural roads), radio power can double, making it the single biggest drain.

The fix nobody uses: if you’re on WiFi anyway, disable cellular data during playback. Radio goes to idle, drain drops ~25%.

The Decode Divide: Hardware vs Software

Hardware decode (HEVC, AV1 dedicated blocks):
  → Decode power: ~0.4W, efficient

Software decode (CPU fallback):
  → Decode power: ~2.1W, heats the device

Result: 5× power difference, same output

Devices that lack AV1 hardware decode fall back to CPU decoding — which both drains battery faster and heats the phone enough to trigger thermal throttling on longer sessions. Our Streaming Device Bench data flags which chipsets decode which codecs in hardware.

The OLED Brightness Trap

On OLED phones, black pixels consume ~0 power; white pixels consume the most. Video content is mostly mid-to-dark tones — but cranking brightness to max to “see better” in a lit room can double display power draw.

OLED power by brightness:
  25% brightness → ~0.8W
  50%            → ~1.4W
  100%           → ~2.9W  (3.6× the 25% draw)

Ranked Fixes, By Impact

1. Use WiFi, disable cellular     → ~25% total drain reduction
2. Cap brightness at ~60%         → ~20% reduction  
3. Force hardware decode if avail → ~15% reduction on AV1-less devices
4. Dark mode / OLED-aware apps    → ~10% reduction on UI-heavy use
5. Lower framerate if offered     → ~5%  reduction (24fps vs 60fps)

Full methodology and per-device drain tables at Mobile Playback Battery Report.