Cloudinary Video Player

Debug mode

This mode adds debugging information to the video player. It will validate the configuration passed to the player and warn about any issues.

Full documentation

Example Code:

      
        <video
          id="player"
          controls
          muted
          autoplay
          class="cld-video-player"
          width="500"
        ></video>
      
      

        const player = cloudinary.videoPlayer('player', {
          cloudName: 'demo',
          fluid: 'yes', // Should be a boolean
          debug: true
        });

        player.source({
          publicId: 'elephants'
        })