videojs-resume-playback

0.2.2 • Public • Published

videojs-resume-playback

Resume Playback in Video.js

Installation

npm install --save videojs-resume-playback

Usage

To include videojs-resume-playback 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.

<link rel="stylesheet" href="//path/to/videojs-resume-playback.css" />
<script src="//path/to/video.min.js"></script>
<script src="//path/to/videojs-resume-playback.min.js"></script>
<script>
  var player = videojs('my-video');

  player.resumePlayback({
    videoId: 'Unique ID',
    replayIndex: 1,
  });
</script>

Browserify/CommonJS

When using with Browserify, install videojs-resume-playback via npm and require the plugin as you would any other module.

var videojs = 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-resume-playback');

var player = videojs('my-video');

player.resumePlayback();

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:

require(['video.js', 'videojs-resume-playback'], function (videojs) {
  var player = videojs('my-video');

  player.resumePlayback();
});

License

MIT. Copyright (c) Kyaw Swar Thwin <myanmarunicorn@gmail.com>

Readme

Keywords

Package Sidebar

Install

npm i videojs-resume-playback

Weekly Downloads

1

Version

0.2.2

License

MIT

Unpacked Size

21.5 kB

Total Files

16

Last publish

Collaborators

  • kyawswarthwin