forked from MPEGGroup/DASHSchema
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexample_G31-1.mpd
58 lines (45 loc) · 1.9 KB
/
example_G31-1.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
<?xml version="1.0" encoding="UTF-8"?>
<MPD
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="urn:mpeg:dash:schema:mpd:2011"
profiles="urn:mpeg:dash:profile:advanced-linear:2025"
xsi:schemaLocation="urn:mpeg:dash:schema:mpd:2011 DASH-MPD.xsd urn:mpeg:dash:schema:urlparam:2014 DASH-MPD-UP.xsd"
type="dynamic" minimumUpdatePeriod="PT2S"
timeShiftBufferDepth="PT30M" minBufferTime="PT4S"
availabilityStartTime="2023-12-25T12:30:00"
publishTime="2023-12-25T12:30:00">
<BaseURL>http://cdn1.example.com/</BaseURL>
<Period id="1">
<EventStream timescale="90000"
schemeIdUri="urn:mpeg:dash:event:alternativeMPD:replace:2025">
<Event presentationTime="3780000" duration="1350000" id="42">
<ReplacePresentation
uri="http://cdn1.example.com/ad1.mpd?dur=15"
earliestResolutionTimeOffset="378000"
maxDuration="1350000" clip="true"
serviceDescriptionId="420"/>
</Event>
<ServiceDescription id="420">
<EventRestrictions executeOnce="true"/>
</ServiceDescription>
<EssentialProperty schemeIdUri="urn:mpeg:dash:urlparam:2016"
xmlns:up="urn:mpeg:dash:schema:urlparam:2016">
<up:ExtUrlQueryInfo includeInRequests="altmpd"
queryTemplate="prta=$urn:mpeg:dash:state:execution-delta#42$" />
</EssentialProperty>
</EventStream>
<AdaptationSet mimeType="video/mp4"
codecs="avc1.4D401F" frameRate="30000/1001"
segmentAlignment="true" startWithSAP="1">
<SegmentTemplate timescale="90000"
initialization="$Bandwidth%/init.mp4v" media="$Bandwidth%/$Time$.mp4v">
<SegmentTimeline>
<S t="0" d="180180" r="432"/>
</SegmentTimeline>
</SegmentTemplate>
<Representation id="v0" width="320" height="240" bandwidth="250000"/>
<Representation id="v1" width="640" height="480" bandwidth="500000"/>
<Representation id="v2" width="960" height="720" bandwidth="1000000"/>
</AdaptationSet>
</Period>
</MPD>