Note taking helper for videos.
npm install --save videojs-notesTo include videojs-notes on your website or web application, use any of the following methods.
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.
<scriptsrc="//path/to/video.min.js"></script><scriptsrc="//path/to/videojs-notes.min.js"></script><script>varplayer=videojs('my-video');player.notes();</script>When using with Browserify, install videojs-notes 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-notes');varplayer=videojs('my-video');player.notes();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-notes'],function(videojs){varplayer=videojs('my-video');player.notes();});MIT. Copyright (c) Shota Makino