rushi-the-neural-arch / videojs-super-resolution

Super Resolution for Video JS

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

videojs-super-resolution

Super resolution is super!

Installation

npm install --save @mux/videojs-super-resolution

Usage

To include videojs-super-resolution 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-super-resolution.min.js"></script>
<script>
  var player = videojs('my-video');

  player.superResolution();
</script>

Browserify/CommonJS

When using with Browserify, install videojs-super-resolution 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-super-resolution/videojs-super-resolution');

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

player.superResolution();

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-super-resolution/videojs-super-resolution'
], function(videojs) {
  var player = videojs('my-video');

  player.superResolution();
});

License

MIT. Copyright (c) Matthew McClure <m@mmcc.io>

About

Super Resolution for Video JS

License:MIT License


Languages

Language:JavaScript 97.7%Language:Python 1.3%Language:HTML 0.8%Language:CSS 0.2%