A user interface for the videojs-playlist API
npm install videojs-playlist-ui
A playlist video picker for video.js and videojs-playlist
Maintenance Status: Stable
- Getting Started
- Root Element
- Using Automatic Discovery (default, example)
- Using a Custom Class (example)
- Using a Custom Element (example)
- Other Options
- className
- playOnSelect
- Playlists and Advertisements
vjs-playlist to house the playlist menu:``html
`
There's also a working example of the plugin you can check out if you're having trouble.
> NOTE: In v2.x of this plugin, the root element was expected to be a list element (i.e.,
or ). As of v3.x, the plugin creates a list; so, this root element _must_ be a non-list container element (e.g., ).$3
By default, the plugin will search for the first element in the DOM with the vjs-playlist class.To defend against problems caused by multiple playlist players on a page, the plugin will only use an element with the
vjs-playlist class if that element has not been used by another player's playlist.$3
A custom className option can be passed to override the class the plugin will search for to find the root element. The same defense against multiple playlist players is reused in this case.`js
player.playlistUi({
className: 'hello-world'
});
`$3
A custom element can be passed using the el option to explicitly define a specific root element.`js
player.playlistUi({
el: document.getElementById('hello-world')
});
`Other Options
The options passed to the plugin are passed to the internal
PlaylistMenu [video.js Component][components]; so, you may pass in [any option][components-options] that is accepted by a component.In addition, the options object may contain the following specialized properties:
####
className
Type: string
Default: "vjs-playlist"As mentioned above, the name of the class to search for to populate the playlist menu.
#### playOnSelect
Type:
boolean
Default: falseThe default behavior is that the play state is expected to stay the same between videos. If the player is playing when switching playlist items, continue playing. If paused, stay paused.
When this boolean is set to
true, clicking on the playlist menu items will always play the video.Playlists and Advertisements
The
PlaylistMenu` automatically adapts to ad integrations based on [videojs-contrib-ads][contrib-ads]. When a linear ad is being played, the menu will darken and stop responding to click or touch events. If you'd prefer to allow your viewers to change videos during ad playback, you can override this behavior through CSS. You will also need to make sure that your ad integration is properly cancelled and cleaned up before switching -- consult the documentation for your ad library for details on how to do that.
[components]: https://videojs.com/guides/components/
[components-options]: https://videojs.com/guides/components/#using-options
[contrib-ads]: https://github.com/videojs/videojs-contrib-ads