Skip to content

Instantly share code, notes, and snippets.

@sinkers
Created September 8, 2014 04:44
Show Gist options
  • Save sinkers/47ab407ce7a7023e9b81 to your computer and use it in GitHub Desktop.
Save sinkers/47ab407ce7a7023e9b81 to your computer and use it in GitHub Desktop.
Android DASH + PlayReady working mpd
http://playready.directtaps.net/media/dash/DASHHDH264AAC/sintel_trailer.HD.adapt.dash_ond.mpd
<MPD
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:dolby="http://www.dolby.com/ns/online/DASH"
xmlns="urn:mpeg:DASH:schema:MPD:2011"
xsi:schemaLocation="urn:mpeg:DASH:schema:MPD:2011"
type="static"
mediaPresentationDuration="PT0H0M52.218S"
minBufferTime="PT1.2S"
profiles="urn:mpeg:dash:profile:isoff-on-demand:2011">
<BaseURL>./</BaseURL>
<Period>
<!-- Video -->
<AdaptationSet mimeType="video/mp4" codecs="avc1.640028" subsegmentAlignment="true" subsegmentStartsWithSAP="1">
<Representation id="1" bandwidth="7028184" width="1920" height="1080">
<BaseURL>sintel_trailer.1920x1080.7000.h40.h264.dash_ond.mp4</BaseURL>
</Representation>
<Representation id="2" bandwidth="5520640" width="1920" height="1080">
<BaseURL>sintel_trailer.1920x1080.5500.h40.h264.dash_ond.mp4</BaseURL>
</Representation>
<Representation id="3" bandwidth="4005152" width="1920" height="1080">
<BaseURL>sintel_trailer.1920x1080.4000.h40.h264.dash_ond.mp4</BaseURL>
</Representation>
<Representation id="4" bandwidth="3014264" width="1280" height="720">
<BaseURL>sintel_trailer.1280x720.3000.h40.h264.dash_ond.mp4</BaseURL>
</Representation>
<Representation id="5" bandwidth="2304112" width="1280" height="720">
<BaseURL>sintel_trailer.1280x720.2300.h40.h264.dash_ond.mp4</BaseURL>
</Representation>
<Representation id="6" bandwidth="1797952" width="1280" height="720">
<BaseURL>sintel_trailer.1280x720.1800.h40.h264.dash_ond.mp4</BaseURL>
</Representation>
<Representation id="7" bandwidth="1382320" width="854" height="480">
<BaseURL>sintel_trailer.854x480.1400.b30.h264.dash_ond.mp4</BaseURL>
</Representation>
<Representation id="8" bandwidth="980408" width="854" height="480">
<BaseURL>sintel_trailer.854x480.1000.b30.h264.dash_ond.mp4</BaseURL>
</Representation>
<Representation id="9" bandwidth="684224" width="854" height="480">
<BaseURL>sintel_trailer.854x480.700.b30.h264.dash_ond.mp4</BaseURL>
</Representation>
<Representation id="10" bandwidth="395032" width="320" height="180">
<BaseURL>sintel_trailer.320x180.400.b13.h264.dash_ond.mp4</BaseURL>
</Representation>
<Representation id="11" bandwidth="195224" width="320" height="180">
<BaseURL>sintel_trailer.320x180.200.b13.h264.dash_ond.mp4</BaseURL>
</Representation>
</AdaptationSet>
<!-- Audio -->
<AdaptationSet mimeType="audio/mp4" codecs="mp4a.40.02" lang="und" subsegmentAlignment="true" subsegmentStartsWithSAP="1">
<Accessibility schemeIdUri="urn:tva:metadata:cs:AudioPurposeCS:2007" value="6"/>
<Role schemeIdUri="urn:mpeg:dash:role:2011" value="main" />
<Representation id="10" bandwidth="157368">
<AudioChannelConfiguration schemeIdUri="urn:mpeg:dash:23003:3:audio_channel_configuration:2011" value="2"/>
<BaseURL>sintel_trailer.2ch.160.aac.dash_ond.mp4</BaseURL>
</Representation>
</AdaptationSet>
<!-- Audio -->
<AdaptationSet mimeType="audio/mp4" codecs="mp4a.40.02" lang="und" subsegmentAlignment="true" subsegmentStartsWithSAP="1">
<Accessibility schemeIdUri="urn:tva:metadata:cs:AudioPurposeCS:2007" value="6"/>
<Role schemeIdUri="urn:mpeg:dash:role:2011" value="alternate" />
<Representation id="11" bandwidth="637368">
<AudioChannelConfiguration schemeIdUri="urn:mpeg:dash:23003:3:audio_channel_configuration:2011" value="6"/>
<BaseURL>sintel_trailer.6ch.640.aac.dash_ond.mp4</BaseURL>
</Representation>
</AdaptationSet>
<!-- Audio -->
<AdaptationSet mimeType="audio/mp4" codecs="ec-3" lang="und" subsegmentAlignment="true" subsegmentStartsWithSAP="1">
<Accessibility schemeIdUri="urn:tva:metadata:cs:AudioPurposeCS:2007" value="6"/>
<Role schemeIdUri="urn:mpeg:dash:role:2011" value="alternate" />
<Representation id="12" bandwidth="640000">
<AudioChannelConfiguration schemeIdUri="urn:dolby:dash:audio_channel_configuration:2011" value="F801"/>
<BaseURL>sintel_trailer.6ch.640.ec3.dash_ond.mp4</BaseURL>
</Representation>
</AdaptationSet>
</Period>
</MPD>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment