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
|
<?xml version="1.0" encoding="UTF-8"?>
<MPD
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:cenc="urn:mpeg:cenc:2013"
xmlns="urn:mpeg:dash:schema:mpd:2011"
xsi:schemaLocation="urn:mpeg:dash:schema:mpd:2011 http://standards.iso.org/ittf/PubliclyAvailableStandards/MPEG-DASH_schema_files/DASH-MPD.xsd"
type="dynamic"
availabilityStartTime="2000-01-01T00:00:00Z"
publishTime="2000-01-01T00:00:00Z"
minimumUpdatePeriod="PT10S"
minBufferTime="PT2S"
suggestedPresentationDelay="PT40S"
timeShiftBufferDepth="PT24H0M0S"
profiles="urn:mpeg:dash:profile:isoff-live:2011"
>
<Period id="1" start="PT1M30S">
<AdaptationSet
mimeType="video/mp4"
frameRate="25/1"
segmentAlignment="true"
subsegmentAlignment="true"
startWithSAP="1"
subsegmentStartsWithSAP="1"
bitstreamSwitching="false"
>
<SegmentTemplate timescale="90000" duration="450000" startNumber="100"/>
<Representation id="1" width="1280" height="720" bandwidth="2400000" codecs="avc1.64001f">
<SegmentTemplate media="hd-5_$Number%09d$.mp4" initialization="hd-5-init.mp4"/>
</Representation>
<Representation id="2" width="1280" height="720" bandwidth="1250000" codecs="avc1.64001f">
<SegmentTemplate media="hd-4_$Number%09d$.mp4" initialization="hd-4-init.mp4"/>
</Representation>
<Representation id="3" width="640" height="360" bandwidth="950000" codecs="avc1.4d401e">
<SegmentTemplate media="hd-3_$Number%09d$.mp4" initialization="hd-3-init.mp4"/>
</Representation>
<Representation id="4" width="640" height="360" bandwidth="650000" codecs="avc1.4d401e">
<SegmentTemplate media="hd-2_$Number%09d$.mp4" initialization="hd-2-init.mp4"/>
</Representation>
<Representation id="5" width="640" height="360" bandwidth="350000" codecs="avc1.4d401e">
<SegmentTemplate media="hd-1_$Number%09d$.mp4" initialization="hd-1-init.mp4"/>
</Representation>
<Representation id="6" width="160" height="90" bandwidth="110000" codecs="avc1.4d400b">
<SegmentTemplate media="hd-0_$Number%09d$.mp4" initialization="hd-0-init.mp4"/>
</Representation>
</AdaptationSet>
<AdaptationSet
mimeType="audio/mp4"
lang="rus"
segmentAlignment="0"
>
<SegmentTemplate
timescale="48000"
media="hd-audio_$Number%09d$.mp4"
initialization="hd-audio-init.mp4"
duration="240000"
startNumber="1"
/>
<Representation id="7" bandwidth="96000" audioSamplingRate="48000" codecs="mp4a.40.2"/>
</AdaptationSet>
<AdaptationSet
mimeType="application/mp4"
lang="rus"
>
<Role schemeIdUri="urn:mpeg:dash:role" value="subtitle"/>
<SegmentTemplate
timescale="90000"
media="hd-caption_$Number%09d$.mp4"
initialization="hd-caption-init.mp4"
duration="450000"
startNumber="1"
/>
<Representation id="8" bandwidth="256" codecs="stpp"/>
</AdaptationSet>
</Period>
</MPD>
|