https://github.com/videojs/videojs-playbackrate-adjuster
A Video.js middleware that adjusts controls based on playback rate
https://github.com/videojs/videojs-playbackrate-adjuster
Last synced: 11 months ago
JSON representation
A Video.js middleware that adjusts controls based on playback rate
- Host: GitHub
- URL: https://github.com/videojs/videojs-playbackrate-adjuster
- Owner: videojs
- License: mit
- Created: 2017-03-13T21:55:08.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2020-12-21T21:43:23.000Z (over 5 years ago)
- Last Synced: 2025-06-04T00:37:05.918Z (about 1 year ago)
- Language: JavaScript
- Homepage: https://videojs.github.io/videojs-playbackrate-adjuster/
- Size: 315 KB
- Stars: 28
- Watchers: 16
- Forks: 6
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
README
# videojs-playbackrate-adjuster
A Video.js 7 middleware that adjusts controls based on playback rate
When the playback rate is adjusted in from the menu, the middleware tells the player that the duration and times have changes and then uses the current playback rate to adjust the times in the control bar.
For example, when the player is playing back in 2x, a 20 minute video will look like a 10 minute video.
## Installation
```sh
npm install --save videojs-playbackrate-adjuster
```
## Usage
To include videojs-playbackrate-adjuster on your website or web application, use any of the following methods.
Since it's a middleware and attaches itself to Video.js automatically,
it only needs to be included or required.
### `` Tag
This is the simplest case. Get the script in whatever way you prefer and include the plugin _after_ you include [video.js][videojs], so that the `videojs` global is available.
```html
<script src="//path/to/video.min.js">
var player = videojs('my-video');
```
### Browserify
When using with Browserify, install videojs-playbackrate-adjuster via npm and `require` the plugin as you would any other module.
```js
var videojs = require('video.js');
// The actual middleware function is exported by this module, but it is also
// attached to Video.js; so, there is no need to assign it to a variable.
require('videojs-playbackrate-adjuster');
var player = videojs('my-video');
```
### 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:
```js
require(['video.js', 'videojs-playbackrate-adjuster'], function(videojs) {
var player = videojs('my-video');
});
```
## License
MIT. Copyright (c) Gary Katsevman
[videojs]: http://videojs.com/