Security News
Research
Data Theft Repackaged: A Case Study in Malicious Wrapper Packages on npm
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
videojs-language-switch
Advanced tools
Control for switching between video language versions
npm install --save videojs-language-switch
The npm installation is preferred, but Bower works, too.
bower install --save videojs-language-switch
To include videojs-language-switch 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.
Include an array of languages with sources. This plugin is created to work alongside other quality video controls so you can provide several resoulutions as well as types with each language.
The name property used for each language will be what appears within the menu item.
<script src="//path/to/video.min.js"></script>
<script src="//path/to/videojs-language-switch.min.js"></script>
<script>
var player = videojs('my-video');
player.languageSwitch({
languages: [
{
name: 'English',
sources: [
{
src: 'http://bit.ly/2iJXRec',
type: 'video/mp4',
res: 'Medium'
},
{
src: 'http://bit.ly/2jxmfwI',
type: 'video/webm',
res: 'Medium'
}
]
},
{
name: 'Portuguese',
sources: [
{
src: 'http://bit.ly/2jVlmho',
type: 'video/mp4',
res: 'Medium'
},
{
src: 'http://bit.ly/2jVlTzx',
type: 'video/webm',
res: 'Medium'
}
]
}
]
});
</script>
You can provide an option for buttonClass
which will add a CSS class to the button icon placeholder element so that you can style it as you wish.
player.languageSwitch({
languages: [
...
],
buttonClass: 'icon-globe' // Default
});
You can also provide an option for positionIndex
which will position button among the control bar items. Some of the default control bar items are hidden so you need to inspect the bar to find correct index.
player.languageSwitch({
languages: [
...
],
positionIndex: 5 // Default - item added at the end of the item list.
});
When using with Browserify, install videojs-language-switch 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-language-switch');
var player = videojs('my-video');
player.languageSwitch();
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-language-switch'], function(videojs) {
var player = videojs('my-video');
player.languageSwitch();
});
MIT. Copyright (c) Adam Oliver <mail@adamoliver.net>
FAQs
Control for switching between video language versions
The npm package videojs-language-switch receives a total of 26 weekly downloads. As such, videojs-language-switch popularity was classified as not popular.
We found that videojs-language-switch demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 open source maintainers 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
Research
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
Research
Security News
Attackers used a malicious npm package typosquatting a popular ESLint plugin to steal sensitive data, execute commands, and exploit developer systems.
Security News
The Ultralytics' PyPI Package was compromised four times in one weekend through GitHub Actions cache poisoning and failure to rotate previously compromised API tokens.