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-dotsub-captions
Advanced tools
Renders rich captions in the video player. Includes support for 3x3 positioning and basic rich formatting (bold, underline, italic). This plugin uses events to drive all its actions.
captionsready: Denotes when the plugin is loaded and ready to receive captions.
captions: This event is used to notify the plugin that there are new captions to be rendered. The captions should be sent as the data payload of the event. ex: player.trigger('captions', []);
would load an empty set of captions.
language: Used to set what language the captions are in. This helps properly set the text direction when applicable. The data payload should be an object containing the direction of the text: {direction: 'rtl' or 'ltr'}
npm install --save videojs-dotsub-captions
To include videojs-dotsub-captions 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-dotsub-captions.min.js"></script>
<script>
var player = videojs('my-video');
player.dotsubCaptions();
</script>
When using with Browserify, install videojs-dotsub-captions 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-dotsub-captions');
var player = videojs('my-video');
player.dotsubCaptions();
When using with Browserify, install videojs-dotsub-captions via npm and import
the plugin as you would any other module.
import videojs from '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.
import 'videojs-dotsub-captions';
const player = videojs('my-video');
player.dotsubCaptions();
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-dotsub-captions'], function(videojs) {
var player = videojs('my-video');
player.dotsubCaptions();
});
Apache-2.0. Copyright (c) Brooks Lyrette <brooks@dotsub.com>
FAQs
Renders rich captions
The npm package videojs-dotsub-captions receives a total of 1 weekly downloads. As such, videojs-dotsub-captions popularity was classified as not popular.
We found that videojs-dotsub-captions 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.