MPEG-DASH Video Demo


<video id="video" controls></video>
<script src="dash.all.js"></script>
<script>
(function(){
  var url = "http://dash.edgesuite.net/akamai/test/caption_test/ElephantsDream/elephants_dream_480p_heaac5_1.mpd";
  var context = new Dash.di.DashContext();
  var player = new MediaPlayer(context);
    player.startup();
    player.attachView(document.querySelector("#video"));
    player.attachSource(url);
  })();
</script>

Video: Elephants Dream

Javascript: dash.js