-
Notifications
You must be signed in to change notification settings - Fork 16
/
example_G4.mpd
92 lines (88 loc) · 4.36 KB
/
example_G4.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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
<?xml version="1.0" encoding="UTF-8"?>
<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-main:2011">
<BaseURL>http://www.example.com/</BaseURL>
<!-- In this Period there are 3 views: coming from three lined up cameras: C1-C2-C3.
C1+C2 and C2+C3 each form a stereo pair but C1+C3 does not.
C2 is taken as the base view for MVC while C1 and C3 are enhancement views -->
<Period start="PT0.00S" duration="PT2000.00S">
<SegmentList>
<Initialization sourceURL="seg-m-init.mp4"/>
</SegmentList>
<AdaptationSet mimeType="video/mp4" codecs="avc1.640828">
<Role schemeIdUri="urn:mpeg:dash:stereoid:2011" value="l1 r0"/>
<Representation id="C2" bandwidth="128000">
<SegmentList duration="10">
<SegmentURL media="seg-m1-C2view-1.mp4"/>
<SegmentURL media="seg-m1-C2view-2.mp4"/>
<SegmentURL media="seg-m1-C2view-3.mp4"/>
</SegmentList>
</Representation>
</AdaptationSet>
<!-- The following Adaptation set contains a Representation functionally identical
to the Representation in the previous Adaptation set. Therefore, these both
have the same Representation@id. This is done for compatibility to 2D receivers
that do not understand the schemeIdURI of the Role Descriptor and may ignore the
Adaptation set -->
<AdaptationSet mimeType="video/mp4" codecs="avc1.640828">
<Representation id="C2" bandwidth="128000">
<SegmentList duration="10">
<SegmentURL media="seg-m1-C2view-1.mp4"/>
<SegmentURL media="seg-m1-C2view-2.mp4"/>
<SegmentURL media="seg-m1-C2view-3.mp4"/>
</SegmentList>
</Representation>
</AdaptationSet>
<AdaptationSet mimeType="video/mp4" codecs="mvc1.760028">
<Role schemeIdUri="urn:mpeg:dash:stereoid:2011" value="l0"/>
<Representation id="C1" dependencyId="C2" bandwidth="192000">
<SegmentList duration="10">
<SegmentURL media="seg-m1-C1view-1.mp4"/>
<SegmentURL media="seg-m1-C1view-2.mp4"/>
<SegmentURL media="seg-m1-C1view-3.mp4"/>
</SegmentList>
</Representation>
</AdaptationSet>
<AdaptationSet mimeType="video/mp4" codecs="mvc1.760028">
<Role schemeIdUri="urn:mpeg:dash:stereoid:2011" value="r1"/>
<Representation id="C3" dependencyId="C2" bandwidth="192000">
<SegmentList duration="10">
<SegmentURL media="seg-m1-C3view-1.mp4"/>
<SegmentURL media="seg-m1-C3view-2.mp4"/>
<SegmentURL media="seg-m1-C3view-3.mp4"/>
</SegmentList>
</Representation>
</AdaptationSet>
</Period>
<!-- In this Period there are only 2 views: C1+C2 form a stereo pair;
C2 is the base view for MVC and C1 is the enhancement view -->
<Period duration="PT1256.00S">
<SegmentList>
<Initialization sourceURL="seg-m-init-2.mp4"/>
</SegmentList>
<AdaptationSet mimeType="video/mp4" codecs="avc1.640828">
<Role schemeIdUri="urn:mpeg:dash:stereoid:2011" value="r0"/>
<Representation id="C2" bandwidth="128000">
<SegmentList duration="10">
<SegmentURL media="seg-m1-C2view-201.mp4"/>
<SegmentURL media="seg-m1-C2view-202.mp4"/>
</SegmentList>
</Representation>
</AdaptationSet>
<AdaptationSet mimeType="video/mp4" codecs="mvc1.760028">
<Role schemeIdUri="urn:mpeg:dash:stereoid:2011" value="l0"/>
<Representation id="C1" dependencyId="C2" bandwidth="192000">
<SegmentList duration="10">
<SegmentURL media="seg-m1-C1view-201.mp4"/>
<SegmentURL media="seg-m1-C1view-202.mp4"/>
</SegmentList>
</Representation>
</AdaptationSet>
</Period>
</MPD>