Video.js Resolution Switcher
Resolution switcher for video.js v5
Example
Working examples of the plugin you can check out if you're having trouble. Or check out this demo.
Getting Started
Install plugin with
npm
npm i videojs-resolution-switcher
or bower
bower install videojs-resolution-switcher
Setup sources dynamically:
<source>
tags:
Or use
YouTube tech
YouTube tech form https://github.com/eXon/videojs-youtube
Flash tech
When using flash tech preload="auto"
is required.
Source options
Sources can passed to player using updateSrc
method or <source>
tag as shown above. Avalible options for each source are:
- label -
String
(required) is shown in menu (ex. 'SD' or '360p') - res -
Number
is resolution of video used for sorting (ex. 360 or 1080)
Plugin options
You can pass options to plugin like this:
Avalible options:
- default -
{Number}|'low'|'high'
- default resolution. If anyNumber
is passed plugin will try to choose source based onres
parameter. Iflow
orhigh
is passed, plugin will choose respectively worse or best resolution (ifres
parameter is specified). Ifres
parameter is not specified plugin assumes that sources array is sorted from best to worse. - dynamicLabel -
{Boolean}
- iftrue
current label will be displayed in control bar. By default gear icon is displayed. - customSourcePicker -
{Function}
- custom function for selecting source.
Methods
updateSrc([source])
Returns video.js player object if used as setter. If source
is not passed it acts like player.src()
// Update video sourcesplayer
PARAMETERS:
name | type | required | description |
---|---|---|---|
source | array | no | array of sources |
currentResolution([label], [customSourcePicker])
If used as getter returns current resolution object:
label: 'SD' // current label sources: type: "video/webm" src: "http://www.example.com/path/to/video.webm" label: 'SD' type: "video/mp4" src: "http://www.example.com/path/to/video.mp4" label: 'SD' // array of sources with current label
If used as setter returns video.js player object.
// Get current resolutionplayer; // returns object {label '', sources: []} // Set resolutionplayer; // returns videojs player object
PARAMETERS:
name | type | required | description |
---|---|---|---|
label | string | no | label name |
customSourcePicker | function | no | cutom function to choose source |
customSourcePicker
If there is more than one source with the same label, player will choose source automatically. This behavior can be changed if customSourcePicker
is passed.
customSourcePicker
must return player
object.
player;
customSourcePicker
accepst 3 arguments.
name | type | required | description |
---|---|---|---|
player | Object | yes | videojs player object |
sources | Array | no | array of sources |
label | String | no | name of label |
customSourcePicker
may be passed in options when player is initialized:
var { // select any source you want return _p;}
getGroupedSrc()
Returns sources grouped by label, resolution and type.
Events
EVENT
resolutionchange Fired when resolution is changed