Skip to content
Novus Examples
mpd805 B

DASH — Dynamic (Live) Manifest With a Time-Shift Buffer

A live DASH manifest: type is dynamic, there is no total duration, and the client must compute which segment is currently available from availabilityStartTime, the wall clock, and the segment duration. Declares a one-minute time-shift buffer and an eight-second presentation delay. The timestamps are fixed so the fixture stays deterministic — a real client will compute a segment number far in the future, which is itself a useful edge case to handle gracefully.

Preview — first 15 linesmpd
<?xml version="1.0" encoding="utf-8"?>
<MPD xmlns="urn:mpeg:dash:schema:mpd:2011" profiles="urn:mpeg:dash:profile:isoff-live:2011"
     type="dynamic" availabilityStartTime="2026-01-01T00:00:00Z"
     publishTime="2026-01-01T00:10:00Z" minimumUpdatePeriod="PT4.0S"
     timeShiftBufferDepth="PT1M" suggestedPresentationDelay="PT8.0S" minBufferTime="PT4.0S">
  <Period id="live" start="PT0S">
    <AdaptationSet mimeType="video/mp4" segmentAlignment="true">
      <SegmentTemplate timescale="1000" duration="4000" startNumber="1"
                       initialization="init-$RepresentationID$.mp4"
                       media="seg-$RepresentationID$-$Number$.m4s"/>
      <Representation id="360p" codecs="avc1.4d401e" width="640" height="360" bandwidth="700000"/>
    </AdaptationSet>
  </Period>
</MPD>

Specifications

Protocol
MPEG-DASH
Type
dynamic (live)
Availability Start Time
2026-01-01T00:00:00Z
Minimum Update Period
PT4.0S
Time Shift Buffer Depth
PT1M
Suggested Presentation Delay
PT8.0S
Duration
unbounded — no mediaPresentationDuration

What is a .mpd file?

MPD (Media Presentation Description, .mpd) is the XML manifest at the heart of MPEG-DASH adaptive streaming. It describes periods, adaptation sets, representations, and segment templates, telling a player which bitrate ladders exist and how to construct segment URLs. It is the DASH counterpart to an HLS .m3u8 playlist.

How to use this file

Use an example .mpd to test DASH players, manifest parsers, and ABR ladder logic. Files under /files/stream/ are served inline with permissive CORS, so a player can fetch this manifest and its segments from any origin without re-hosting them.

How to use this file for testing

“DASH — Dynamic (Live) Manifest With a Time-Shift Buffer” is a deterministic Novus Examples fixture for Streaming manifests, Conversion testing, Video QA. HLS playlists and DASH MPDs covering multi-bitrate ladders, byte-range addressing, and segment templates. Served inline with permissive CORS under /files/stream/, so a player can load them from any origin without re-hosting.

Documented properties for this file: unbounded — no mediaPresentationDuration · dynamic (live). Compare results against paired or grouped companions on this page when present (clean↔damaged, searchable↔scanned, or format twins) so scores stay reproducible across runs.

Download the file once, keep the path stable in CI or local scripts, and treat the spec table as the contract: dimensions, seeds, field lists, and roles are intentional. Corrupt or invalid samples are labelled as such — expect parsers to fail loudly rather than silently accept them.

Media fixtures are short and synthetic by design. Prefer waveform or transcript ground truth in the same group when measuring ASR, trim, upscale, or sync tools; do not assume broadcast-quality masters.

Code examples

# manifests resolve their own segments, so pass the URL, not a local copy
ffprobe -v error -show_entries stream=codec_name,width,height live.mpd
ffplay live.mpd

Generated by generation/video_timedtext.py. Free for any use, no attribution required — license.