-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathexample_G8.mpd
More file actions
53 lines (53 loc) · 2.25 KB
/
Copy pathexample_G8.mpd
File metadata and controls
53 lines (53 loc) · 2.25 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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
<?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>