VideoJS plugin that leverages videojs-contrib-quality-levels plugin to offer manual user-selectable level selection options for adaptive http streams.
npm install videojs-http-source-selector 
VideoJS plugin that leverages videojs-contrib-quality-levels plugin to offer manual user-selectable level selection options for adaptive http streams.
Compatible with vjs 7 and up.
height` and `bitrate` metadata parsed from the stream QualityLevels sources. If `height` isn't available in the stream metadata, the labels will default to `bitrate`.$3
You can configure a bias to lock playback to the highest or lowest resolution by default by passing one of the below plugin options into your videojs initializer.#### Low:
`js
httpSourceSelector:
{
default: 'low'
}
`
#### High:
`js
httpSourceSelector:
{
default: 'high'
}
`
#### Auto:
`js
httpSourceSelector:
{
default: 'auto'
}
`Installation
`sh
npm install --save videojs-contrib-quality-levels
npm install --save videojs-http-source-selector
`Dependencies
Requires videojs-contrib-quality-levelsUsage
To include videojs-http-source-selector on your website or web application, use any of the following methods.
$3
This is the simplest case. Get the script in whatever way you prefer and include the plugin _after_ you include [video.js][videojs], so that the
videojs global is available. You can configure the plugin with the options described above. `html
`$3
When using with Browserify, install videojs-http-source-selector via npm and
require the plugin as you would any other module.`js
var videojs = require('video.js');
require('videojs-contrib-quality-levels');// The actual plugin function is exported by this module, but it is also
// attached to the
Player.prototype; so, there is no need to assign it
// to a variable.
require('videojs-http-source-selector');var player = videojs('my-video');
player.httpSourceSelector();
`$3
When using with RequireJS (or another AMD library), get the script in whatever way you prefer and
require the plugin as you normally would:`js
require(['video.js', 'videojs-contrib-quality-levels', 'videojs-http-source-selector'], function(videojs) {
var player = videojs('my-video'); player.httpSourceSelector();
});
`$3
To build, checkout the repo, run `npm install` && `npm start`,
go to localhost:9999 (or the next free port) and test out the plugin.$3
* `npm install`
* `npm build`
* `npm version major/minor/patch`
* `git push origin master --tags`
* `npm publish``MIT. Copyright (c) Justin Fujita;
[videojs]: http://videojs.com/