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.
@s3bubble/videojs-s3bubble-bitrate-switcher
Advanced tools
Switching bitrates for S3Bubble player
npm install --save videojs-s3bubble-bitrate-switcher
To include videojs-s3bubble-bitrate-switcher 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.
<script src="//path/to/video.min.js"></script>
<script src="//path/to/videojs-s3bubble-bitrate-switcher.min.js"></script>
<script>
var player = videojs('my-video');
player.s3BubbleBitrateSwitcher();
</script>
When using with Browserify, install videojs-s3bubble-bitrate-switcher 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-s3bubble-bitrate-switcher');
var player = videojs('my-video');
player.s3BubbleBitrateSwitcher();
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-s3bubble-bitrate-switcher'], function(videojs) {
var player = videojs('my-video');
player.s3BubbleBitrateSwitcher();
});
MIT. Copyright (c) S3bubble <support@s3bubble.com>
FAQs
Switching bitrate for S3Bubble player
The npm package @s3bubble/videojs-s3bubble-bitrate-switcher receives a total of 2 weekly downloads. As such, @s3bubble/videojs-s3bubble-bitrate-switcher popularity was classified as not popular.
We found that @s3bubble/videojs-s3bubble-bitrate-switcher 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
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.