-
Notifications
You must be signed in to change notification settings - Fork 16
/
example_H3.mpd
47 lines (40 loc) · 2.06 KB
/
example_H3.mpd
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
<?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">
<Period>
<!-- Tiled Panorama (2 full HD video next to each other) -->
<AdaptationSet segmentAlignment="true" subsegmentAlignment="true" subsegmentStartsWithSAP="1">
<SupplementalProperty schemeIdUri="urn:mpeg:dash:srd:2014"
value="1, 0, 0, 1920, 1080, 3840, 1080, 0"/>
<Representation id="left_panorama" mimeType="video/mp4" codecs="avc1.42c01e" bandwidth="5000000" width="1920" height="1080">
<BaseURL>left_panorama.mp4</BaseURL>
</Representation>
</AdaptationSet>
<AdaptationSet segmentAlignment="true" subsegmentAlignment="true" subsegmentStartsWithSAP="1">
<SupplementalProperty schemeIdUri="urn:mpeg:dash:srd:2014"
value="1, 1920, 0, 1920, 1080, 3840, 1080, 0"/>
<Representation id="right_panorama" mimeType="video/mp4" codecs="avc1.42c01e" bandwidth="5000000" width="1920" height="1080">
<BaseURL>right_panorama.mp4</BaseURL>
</Representation>
</AdaptationSet>
<!-- Moving Region-of-Interest -->
<AdaptationSet segmentAlignment="true" subsegmentAlignment="true" subsegmentStartsWithSAP="1">
<EssentialProperty schemeIdUri="urn:mpeg:dash:srd:2016"
value="1, roi-coordinates"/>
<Representation id="zoomed" mimeType="video/mp4" codecs="avc1.42c01e" bandwidth="5000000" width="1920" height="1080">
<BaseURL>zoomed_part.mp4</BaseURL>
</Representation>
</AdaptationSet>
<AdaptationSet segmentAlignment="true" subsegmentAlignment="true" subsegmentStartsWithSAP="1">
<Representation id="roi-coordinates" associationId="zoomed" associationType="cdsc" codecs="2dcc" bandwidth="100">
<BaseURL>roi_coordinates.mp4</BaseURL>
</Representation>
</AdaptationSet>
</Period>
</MPD>