MPEG-DASH plugin
This plugin 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>
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.