A reference client implementation for the playback of MPEG DASH via Javascript and compliant browsers.
JavaScript Other
Latest commit d5d30d0 Oct 26, 2017 @epiclabsDASH epiclabsDASH Merge pull request #2254 from bbcrddave/FixMetrics
Fix MetricsReporting - pass correct config to ReportingFactory
Permalink
Failed to load latest commit information.
build fix merge issue Sep 1, 2017
contrib Control bar: support for multiple instances: id suffix to be set for … Oct 4, 2017
docs/migration Updating vm2.dashif.org and dash.akamaized.net URLs to always load un… Jun 15, 2017
externals Merge pull request #2224 from Orange-OpenSource/PlayreadyCustomData Oct 24, 2017
samples Use latest version of dash.js package in webpack example Oct 12, 2017
src Merge pull request #2254 from bbcrddave/FixMetrics Oct 26, 2017
test Merge pull request #2224 from Orange-OpenSource/PlayreadyCustomData Oct 24, 2017
.editorconfig add .editorconfig Feb 2, 2017
.gitignore Fixes in management of the video size check timer of TextTracks Sep 25, 2017
.jscsrc Fix trailing commas, update JSCS and JSHint configs Mar 21, 2017
.jshintrc add predefined words to jshint config Sep 27, 2017
.npmignore removed web.config I do not think it is needed anymore will test Sep 7, 2016
.travis.yml Use recent node versions in travis builds Dec 22, 2016
AUTHORS.md Added TobbeEdgeware as author. Nov 16, 2016
CONTRIBUTING.md Add CONTRIBUTING.md file Oct 16, 2017
Gruntfile.js Fix #2244 - pass compact option to babelify Oct 25, 2017
ISSUE_TEMPLATE.md update reference player link in ISSUE_TEMPLATE.md Aug 16, 2017
LICENSE.md modified license.md Jan 20, 2015
MediaPlayer.uml adding a few uml based diagrams to see if worth outputting more - loo… Jun 20, 2017
README.md Example code uses HTTPS Jul 7, 2017
index.d.ts Enable to set and get playback rate. Aug 4, 2017
index.js update module management in order to call 'dashjs.FactorMaker' in rep… Oct 4, 2017
index_mediaplayerOnly.js Fix export of FactoryMaker. Jul 12, 2017
mochahook.js Revert "Add support for Browserify based includes of the player (fixes Jul 20, 2016
package.json Prepare for release 2.6.3 Oct 24, 2017

README.md

Travis CI Status: Travis CI Status

Join the discussion: Slack Status

Overview

A reference client implementation for the playback of MPEG DASH via JavaScript and compliant browsers. Learn more about DASH IF Reference Client on our wiki.

If your intent is to use the player code without contributing back to this project, then use the MASTER branch which holds the approved and stable public releases.

If your goal is to improve or extend the code and contribute back to this project, then you should make your changes in, and submit a pull request against, the DEVELOPMENT branch. Read through our wiki section on https://github.com/Dash-Industry-Forum/dash.js/wiki/How-to-Contribute for a walk-through of the contribution process.

All new work should be in the development branch. Master is now reserved for tagged builds.

Documentation

Before you get started, please read the Dash.js v2.0 Migration Document found here

Full API Documentation is available describing all public methods, interfaces, properties, and events.

For help, join our Slack channel, our email list and read our wiki.

Reference players

The released pre-built reference players are publicly accessible if you want direct access without writing any Javascript.

The nightly build of the /dev branch reference player, is pre-release but contains the latest fixes. It is a good place to start if you are debugging playback problems.

A nightly build of the latest minified files are also available: dash.all.min.js and its debug version dash.all.debug.js.

All these reference builds and mninfied files are available under both http and https.

Quick Start for Users

If you just want a DASH player to use and don't need to see the code or commit to this project, then follow the instructions below. If you are a developer and want to work with this code base, then skip down to the "Quick Start for Developers" section.

Put the following code in your web page

<script src="https://cdn.dashjs.org/latest/dash.all.min.js"></script>
...
<style>
    video {
       width: 640px;
       height: 360px;
    }
</style>
...
<body>
   <div>
       <video data-dashjs-player autoplay src="https://dash.akamaized.net/envivio/EnvivioDash3/manifest.mpd" controls></video>
   </div>
</body>

Then place your page under a web server (do not try to run from the file system) and load it via http in a MSE-enabled browser. The video will start automatically. Switch out the manifest URL to your own manifest once you have everything working. If you prefer to use the latest code from this project (versus the last tagged release) then see the "Quick Start for Developers" section below.

View the /samples folder for many other examples of embedding and using the player. If you are interested in captioning support, which requires some additional UI elements, then please view the captioning examples.

Quick Start for Developers

Reference Player

  1. Download 'development' branch
  2. Extract dash.js and move the entire folder to localhost (or run any http server instance such as python's SimpleHTTPServer at the root of the dash.js folder).
  3. Open samples/dash-if-reference-player/index.html in your MSE capable web browser.

Install Core Dependencies

  1. install nodejs
  2. install grunt
    • npm install -g grunt-cli

Build / Run tests on commandline.

  1. Install all Node Modules defined in package.json
    • npm install
  2. Run the GruntFile.js default task
    • grunt
  3. You can also target individual tasks: E.g.
    • grunt debug (quickest build)
    • grunt dist
    • grunt release
    • grunt test

Getting Started

The standard setup method uses javascript to initialize and provide video details to dash.js. MediaPlayerFactory provides an alternative declarative setup syntax.

Standard Setup

Create a video element somewhere in your html. For our purposes, make sure the controls attribute is present.

<video id="videoPlayer" controls></video>

Add dash.all.min.js to the end of the body.

<body>
  ...
  <script src="yourPathToDash/dash.all.min.js"></script>
</body>

Now comes the good stuff. We need to create a MediaPlayer and initialize it.

var url = "https://dash.akamaized.net/envivio/EnvivioDash3/manifest.mpd";
var player = dashjs.MediaPlayer().create();
player.initialize(document.querySelector("#videoPlayer"), url, true);

When it is all done, it should look similar to this:

<!doctype html>
<html>
    <head>
        <title>Dash.js Rocks</title>
        <style>
            video {
                width: 640px;
                height: 360px;
            }
        </style>
    </head>
    <body>
        <div>
            <video id="videoPlayer" controls></video>
        </div>
        <script src="yourPathToDash/dash.all.min.js"></script>
        <script>
            (function(){
                var url = "https://dash.akamaized.net/envivio/EnvivioDash3/manifest.mpd";
                var player = dashjs.MediaPlayer().create();
                player.initialize(document.querySelector("#videoPlayer"), url, true);
            })();
        </script>
    </body>
</html>

Module Setup

We publish dash.js to npm. Examples of how to use dash.js in different module bundlers can be found in the samples/modules directory.

MediaPlayerFactory Setup

An alternative way to build a Dash.js player in your web page is to use the MediaPlayerFactory. The MediaPlayerFactory will automatically instantiate and initialize the MediaPlayer module on appropriately tagged video elements.

Create a video element somewhere in your html and provide the path to your mpd file as src. Also ensure that your video element has the data-dashjs-player attribute on it.

<video data-dashjs-player autoplay src="https://dash.akamaized.net/envivio/EnvivioDash3/manifest.mpd" controls>
</video>

Add dash.all.min.js to the end of the body.

<body>
  ...
  <script src="yourPathToDash/dash.all.min.js"></script>
</body>

When it is all done, it should look similar to this:

<!doctype html>
<html>
    <head>
        <title>Dash.js Rocks</title>
        <style>
            video {
                width: 640px;
                height: 360px;
            }
        </style>
    </head>
    <body>
        <div>
            <video data-dashjs-player autoplay src="https://dash.akamaized.net/envivio/EnvivioDash3/manifest.mpd" controls>
            </video>
        </div>
        <script src="yourPathToDash/dash.all.min.js"></script>
    </body>
</html>

Tested With

Browser Stack Logo