Cloudinary Video Player is a JavaScript-based HTML video player bundled with many valuable customization and integration capabilities, and is monetization and analytics-ready. The player is fully responsive for use in any device or screen size, and is integrated with Cloudinary's video delivery and manipulation solution.
This README includes basic information for installation and getting started. View the documentation for comprehensive guidance on integration and all the available features.
-
Install using:
npm install cloudinary-video-player
-
Import the package:
import cloudinary from 'cloudinary-video-player'; // Also possible: // import { videoPlayer } from 'cloudinary-video-player'; import 'cloudinary-video-player/cld-video-player.min.css';
Cloudinary Video Player can also be included directly from the jsDelivr CDN:
<link href="https://cdn.jsdelivr.net/npm/cloudinary-video-player/dist/cld-video-player.min.css" rel="stylesheet">
<script src="https://cdn.jsdelivr.net/npm/cloudinary-video-player/dist/cld-video-player.min.js" type="text/javascript"></script>
The Cloudinary video player offers standard and light package variations, available in either minified or non-minified formats.
- Standard package: Includes all functionality described in this video player documentation.
- Light package: Excludes the following optional functionality: Adaptive bitrate streaming (HLS and MPEG-DASH), Video ads, Shoppable videos (alpha)
cld-video-player.js
- Non minified version which includes all optional modules.cld-video-player.min.js
- Minified version which includes all optional modules.cld-video-player.light.js
- Non minified version which does not include any optional modules.cld-video-player.light.min.js
- Minified version which does not include any optional modules. (for smaller bundle size)
Create a video tag containing cld-video-player
class and a supported skin class:
<video
id="player"
controls
autoplay
data-cld-public-id="dog"
class="cld-video-player cld-fluid">
</video>
Instantiate a new cloudinary Video Player:
cloudinary.videoPlayer('player', {
cloudName: 'demo'
});
In order to run this project locally:
- Clone this repository
npm install
npm start