StreamTest

Representation declares no bandwidth

@bandwidth is required, and adaptive bitrate selection depends entirely on it.

What it means

A <Representation> omits the required @bandwidth attribute, so the manifest never states how many bits per second that rendition needs. Every other attribute may be present and correct; this one is what selection depends on.

Why it matters

Bandwidth is the primary input to ABR: it is how a player decides whether a representation fits the current connection. A representation without it cannot be ranked, so players either ignore it — wasting the encode — or treat it as zero and select it always.

How to fix it

  1. Add bandwidth to every <Representation>, in bits per second.
  2. Use the peak sustained bitrate, not the average, so the player budgets for the worst case.

Check your own stream

The free DASH validator runs this check on every analysis and links each finding straight back here.

Open the DASH validator

Frequently asked questions

What does "Representation declares no bandwidth" mean?
A <Representation> omits the required @bandwidth attribute, so the manifest never states how many bits per second that rendition needs. Every other attribute may be present and correct; this one is what selection depends on.
Why does it matter?
Bandwidth is the primary input to ABR: it is how a player decides whether a representation fits the current connection. A representation without it cannot be ranked, so players either ignore it — wasting the encode — or treat it as zero and select it always.
How do I fix it?
1. Add bandwidth to every <Representation>, in bits per second. 2. Use the peak sustained bitrate, not the average, so the player budgets for the worst case.
How can I detect this automatically?
Paste your MPEG-DASH streaming URL into StreamTest's free DASH validator. It runs this check on every analysis, flags the finding, and links straight back to this page — no sign-up required.

Related DASH checks