forked from MPEGGroup/DASHSchema
-
Notifications
You must be signed in to change notification settings - Fork 0
/
example_G8.mpd
48 lines (44 loc) · 2.32 KB
/
example_G8.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
48
<?xml version="1.0" encoding="UTF-8"?>
<!-- Attention: this is not a complete MPD and thus will not validate against the MPD Schema -->
<MPD
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="urn:mpeg:dash:schema:mpd:2011"
xsi:schemaLocation="urn:mpeg:dash:schema:mpd:2011 DASH-MPD.xsd"
type="static"
mediaPresentationDuration="PT3256S"
minBufferTime="PT10.00S"
profiles="urn:mpeg:dash:profile:isoff-on-demand:2011">
<Period>
<AdaptationSet mimeType="video/mp4" group="1">
<Role schemeIdUri="urn:mpeg:dash:role:2011" value="main"/>
<Viewpoint schemeIdUri="urn:mpeg:dash:viewpoint:2011" value="vp1"/>
<Representation id="11" bandwidth="1024000"><!-- ... --></Representation>
<Representation id="12" bandwidth="512000"><!-- ... --></Representation>
<!-- ... -->
</AdaptationSet>
<AdaptationSet mimeType="video/mp4" group="1">
<Role schemeIdUri="urn:mpeg:dash:role:2011" value="main"/>
<Viewpoint schemeIdUri="urn:mpeg:dash:viewpoint:2011" value="vp2"/>
<Representation id="11" bandwidth="1024000"><!-- ... --></Representation>
<Representation id="12" bandwidth="512000"><!-- ... --></Representation>
<!-- ... -->
</AdaptationSet>
<AdaptationSet mimeType="audio/mp4" group="1">
<Role schemeIdUri="urn:mpeg:dash:role:2011" value="main"/>
<Role schemeIdUri="urn:mpeg:dash:role:2011" value="supplementary"/>
<Viewpoint schemeIdUri="urn:mpeg:dash:viewpoint:2011" value="vp1"/>
<Representation id="11" bandwidth="1024000"><!-- ... --></Representation>
<Representation id="12" bandwidth="512000"><!-- ... --></Representation>
<!-- ... -->
</AdaptationSet>
<AdaptationSet mimeType="audio/mp4" group="1">
<Role schemeIdUri="urn:mpeg:dash:role:2011" value="main"/>
<Role schemeIdUri="urn:mpeg:dash:role:2011" value="supplementary"/>
<Viewpoint schemeIdUri="urn:mpeg:dash:viewpoint:2011" value="vp2"/>
<Representation id="11" bandwidth="1024000"><!-- ... --></Representation>
<Representation id="12" bandwidth="512000"><!-- ... --></Representation>
<!-- ... -->
</AdaptationSet>
</Period>
<!-- ... -->
</MPD>