Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
cloudinary-video-analytics
Advanced tools
The Cloudinary Video Analytics package allows you to track analytics for your Cloudinary videos using video players other than the Cloudinary Video Player. The library targets the HTML5 video tag and is designed to work with any video player that use this
The Cloudinary Video Analytics package allows you to track analytics for your Cloudinary videos using video players other than the Cloudinary Video Player. The library targets the HTML5 video tag and is designed to work with any video player that use this tag. For more information view the documentation.
1. Install the package:
npm i cloudinary-video-analytics
2. Import the library:
import { connectCloudinaryAnalytics } from 'cloudinary-video-analytics';
3. Connect the analytics::
Connect the analytics by calling the connectCloudinaryAnalytics
method and provide the video element as a parameter. For example, if your video element has the id ‘video-player’:
const videoElement = document.getElementById('video-player');
const cloudinaryAnalytics = connectCloudinaryAnalytics(videoElement);
4. Start tracking:
Start tracking analytics for any Cloudinary video by calling the startAutoTracking
method:
cloudinaryAnalytics.startAutoTracking();
Alternatively, to track each video manually, call the startManualTracking
method, providing your Cloudinary cloud name and the public id of the video you want to manually track:
cloudinaryAnalytics.startManualTracking({
cloudName: 'demo',
publicId: 'cld-sample',
})
Auto and manual tracking cannot be used together for the same video element. Manual tracking should only be used in cases where you need to track certain videos, you want to track a video tag element which is dynamic, or you have custom domains which require providing cloudName
and publicId
.
Native HTML Video Tag - Auto tracking
Native HTML Video Tag - Manual tracking
FAQs
The Cloudinary Video Analytics package allows you to track analytics for your Cloudinary videos using video players other than the Cloudinary Video Player. The library targets the HTML5 video tag and is designed to work with any video player that use this
The npm package cloudinary-video-analytics receives a total of 1,964 weekly downloads. As such, cloudinary-video-analytics popularity was classified as popular.
We found that cloudinary-video-analytics demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 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.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.