Security News
Bun 1.2 Released with 90% Node.js Compatibility and Built-in S3 Object Support
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.
videojs-http-source-selector
Advanced tools
VideoJS plugin that leverages videojs-contrib-quality-levels plugin to offer manual user-selectable level selection options for adaptive http streams.
VideoJS plugin that leverages videojs-contrib-quality-levels plugin to offer manual user-selectable level selection options for adaptive http streams.
Compatible with vjs 7 and up.
Level labels are generated from the height
and bitrate
metadata parsed from the stream QualityLevels sources. If height
isn't available in the stream metadata, the labels will default to bitrate
.
You can configure a bias to lock playback to the highest or lowest resolution by default by passing one of the below plugin options into your videojs initializer.
httpSourceSelector:
{
default: 'low'
}
httpSourceSelector:
{
default: 'high'
}
httpSourceSelector:
{
default: 'auto'
}
npm install --save videojs-contrib-quality-levels
npm install --save videojs-http-source-selector
Requires videojs-contrib-quality-levels
To include videojs-http-source-selector on your website or web application, use any of the following methods.
<script>
TagThis 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. You can configure the plugin with the options described above.
<script src="//path/to/video.min.js"></script>
<script src="//path/to/videojs-http-source-selector.min.js"></script>
<script src="//path/to/videojs-contrib-quality-levels.min.js"></script>
<script>
var options =
{
plugins: {
httpSourceSelector:
{
default: 'auto'
}
}
};
var player = videojs('my-video', options);
player.httpSourceSelector();
</script>
When using with Browserify, install videojs-http-source-selector via npm and require
the plugin as you would any other module.
var videojs = require('video.js');
require('videojs-contrib-quality-levels');
// 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-http-source-selector');
var player = videojs('my-video');
player.httpSourceSelector();
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-contrib-quality-levels', 'videojs-http-source-selector'], function(videojs) {
var player = videojs('my-video');
player.httpSourceSelector();
});
To build, checkout the repo, run npm install
&& npm start
,
go to localhost:9999 (or the next free port) and test out the plugin.
npm install
npm build
npm version major/minor/patch
git push origin master --tags
npm publish
MIT. Copyright (c) Justin Fujita;
FAQs
VideoJS plugin that leverages videojs-contrib-quality-levels plugin to offer manual user-selectable level selection options for adaptive http streams.
We found that videojs-http-source-selector demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.
Security News
Biden's executive order pushes for AI-driven cybersecurity, software supply chain transparency, and stronger protections for federal and open source systems.
Security News
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.