You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jul 18, 2023. It is now read-only.
A Video.js plugin that turns the play button into a replay button at the end of playback. This functionality is provided by default in VideoJS 6.
Installation
npm install --save videojs-replay
Usage
To include videojs-replay on your website or web application, use any of the following methods.
<script> Tag
This is the simplest case. Get the script in whatever way you prefer and include the plugin after you include video.js, so that the videojs global is available.
When using with Browserify, install videojs-replay via npm and require the plugin as you would any other module.
varvideojs=require('video.js');// 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-replay');varplayer=videojs('my-video');player.replayButton();
RequireJS/AMD
When using with RequireJS (or another AMD library), get the script in whatever way you prefer and require the plugin as you normally would: