MPEG-DASH

Implements an MPEG-DASH loader plugin, which is capable of playing .mpd source files.

Installation

Include the plugin next to the core player:

<script src="//cdn.flowplayer.com/releases/native/3/stable/flowplayer.min.js"></script>
<script src="//cdn.flowplayer.com/releases/native/3/stable/plugins/dash.min.js"></script>

Player and plugins exist in different release versions. Please see the release channel documentation.

Async cloud player installation

To enable the plugin in the async cloud player, declare it in the "plugins": [] config object with dash .

Sample code:

var player = flowplayer('#container',
    { src: '//edge.flowplayer.org/bauhaus.mpd' }
  )

Accessing the Dash JS instance

The Dash JS instance is exposed at player.dash when it is available, providing the ability to fully manipulate the underlying implementation for any custom integration necessary.

Results