The Cloudinary Video Player is a JavaScript-based HTML5 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 the files using:
npm install cloudinary-video-player
-
Include the javascript file in your HTML. For Example:
<link href="node_modules/cloudinary-video-player/dist/cld-video-player.min.css" rel="stylesheet"> <script src="node_modules/cloudinary-video-player/dist/cld-video-player.min.js" type="text/javascript"></script>
Cloudinary Video Player can also be included directly from the Unpkg CDN:
<link href="https://unpkg.com/cloudinary-video-player/dist/cld-video-player.min.css" rel="stylesheet">
<script src="https://unpkg.com/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="example-player"
controls
autoplay
data-cld-public-id="dog"
class="cld-video-player cld-video-player-skin-dark">
</video>
Instantiate a new cloudinary Video Player:
cloudinary.videoPlayer('example-player', {
cloud_name: 'demo'
});
In order to run this project locally:
- Install yarn
- Clone this repository
yarn install
yarn start