-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathexample_H1.mpd
More file actions
26 lines (26 loc) · 1.66 KB
/
example_H1.mpd
File metadata and controls
26 lines (26 loc) · 1.66 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<?xml version="1.0"?>
<MPD xmlns="urn:mpeg:dash:schema:mpd:2011" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="urn:mpeg:dash:schema:mpd:2011 DASH-MPD.xsd" type="static" mediaPresentationDuration="PT10S" minBufferTime="PT1S" profiles="urn:mpeg:dash:profile:isoff-on-demand:2011">
<ProgramInformation>
<Title>Example of a DASH Media Presentation Description using Spatial Relationship Description to indicate that a video is a zoomed part of another</Title>
</ProgramInformation>
<Period>
<!-- Panorama Video -->
<AdaptationSet segmentAlignment="true" subsegmentAlignment="true" subsegmentStartsWithSAP="1">
<SupplementalProperty schemeIdUri="urn:mpeg:dash:srd:2014" value="0,0,0,3,3,3,3"/>
<Role schemeIdUri="urn:mpeg:dash:role:2011" value="main"/>
<Representation id="1" mimeType="video/mp4" codecs="avc1.42c033" width="1920" height="1080" bandwidth="1055223" startWithSAP="1">
<BaseURL> panorama_video.mp4</BaseURL>
<SegmentBase indexRangeExact="true" indexRange="839-990"/>
</Representation>
</AdaptationSet>
<!-- Zoomed Video -->
<AdaptationSet segmentAlignment="true" subsegmentAlignment="true" subsegmentStartsWithSAP="1">
<SupplementalProperty schemeIdUri="urn:mpeg:dash:srd:2014" value="0,1,1,1,1,3,3"/>
<Role schemeIdUri="urn:mpeg:dash:role:2011" value="supplementary"/>
<Representation id="2" mimeType="video/mp4" codecs="avc1.42c028" width="1920" height="1080" bandwidth="769458" startWithSAP="1">
<BaseURL> zoomed_video.mp4</BaseURL>
<SegmentBase indexRangeExact="true" indexRange="838-989"/>
</Representation>
</AdaptationSet>
</Period>
</MPD>