-
Notifications
You must be signed in to change notification settings - Fork 16
/
example_G12.mpd
50 lines (50 loc) · 2.57 KB
/
example_G12.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
<?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="dynamic" minimumUpdatePeriod="PT10S"
timeShiftBufferDepth="PT600S"
minBufferTime="PT2S"
profiles="urn:mpeg:dash:profile:isoff-main:2011"
publishTime="2014-10-17T17:17:05Z"
availabilityStartTime="2014-10-17T17:17:05Z">
<Period id="1" start="PT0S">
<BaseURL> http://example.com/1/</BaseURL>
<SegmentTemplate media="./$RepresentationID$/$Number$.m4s" initialization="$RepresentationID$-init.mp4"/>
<!-- Video -->
<AdaptationSet id="1" mimeType="video/mp4" codecs="hev1.A1.80.L93.B0" segmentAlignment="true" startWithSAP="1">
<SegmentTemplate timescale="25" duration="25"/>
<Representation id="v2048" bandwidth="2048000"/>
<Representation id="v1024" bandwidth="1024000"/>
<Representation id="v512" bandwidth="512000"/>
<Representation id="v128" bandwidth="128000"/>
</AdaptationSet>
<!-- Audio -->
<AdaptationSet id="2" mimeType="audio/mp4" codecs="mp4a.40.2" segmentAlignment="true" startWithSAP="1" bitstreamSwitching="true">
<SegmentTemplate timescale="20" duration="20"/>
<Representation id="a128" bandwidth="128000"/>
<Representation id="a64" bandwidth="64000"/>
</AdaptationSet>
</Period>
<Period id="2" start="PT1000S">
<BaseURL> http://example.com/2/</BaseURL>
<SegmentTemplate media="./$RepresentationID$/$Number$.m4s" initialization="$RepresentationID$-init.mp4"/>
<!-- Video -->
<AdaptationSet id="1" mimeType="video/mp4" codecs="hev1.A1.80.L93.B0" segmentAlignment="true" startWithSAP="1">
<SupplementalProperty schemeIdUri="urn:mpeg:dash:period-continuity:2015" value="1"/>
<SegmentTemplate timescale="25" duration="25" presentationTimeOffset="25000"/>
<Representation id="v2048" bandwidth="2048000"/>
<Representation id="v1024" bandwidth="1024000"/>
<Representation id="v512" bandwidth="512000"/>
<Representation id="v128" bandwidth="128000"/>
</AdaptationSet>
<!-- Audio -->
<AdaptationSet id="2" mimeType="audio/mp4" codecs="mp4a.40.2" segmentAlignment="true" startWithSAP="1" bitstreamSwitching="true">
<SupplementalProperty schemeIdUri="urn:mpeg:dash:period-continuity:2015" value="1"/>
<SegmentTemplate timescale="20" duration="20" presentationTimeOffset="20000"/>
<Representation id="a128" bandwidth="128000"/>
<Representation id="a64" bandwidth="64000"/>
</AdaptationSet>
</Period>
</MPD>