videojs-constant-timeupdate

1.0.0 • Public • Published

videojs-constant-timeupdate

Adds a new event constant-timeupdate to player - an alternative to timeupdate event which will be triggered on a constant interval unlike timeupdate

Installation

npm install --save videojs-constant-timeupdate

Usage

To include videojs-constant-timeupdate 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.

<script src="//path/to/video.min.js"></script>
<script src="//path/to/videojs-constant-timeupdate.min.js"></script>
<script>
  var player = videojs('my-video');
  player.constantTimeupdate({
      interval: 1000,
      roundFn: Math.round
  });
</script> 

License

MIT. Copyright (c) Arjun Ganesan <me@arjun-g.com>

Readme

Keywords

Package Sidebar

Install

npm i videojs-constant-timeupdate

Weekly Downloads

1

Version

1.0.0

License

MIT

Unpacked Size

31.6 kB

Total Files

21

Last publish

Collaborators

  • arjun_g