Watermark

Video Player is loading.
Advertisement
Current Time 0:00
Duration -:-
Loaded: 0%
Stream Type LIVE
Remaining Time -:-
1x
    • Chapters
    • descriptions off, selected
    • captions off, selected

        Code Setup Source (Watermark logo)

        <!--Loading player skin, videojs and nuevo plugin inside <body> tag -->
        <link href="../videojs/skins/nuevo/videojs.min.css" rel="stylesheet" type="text/css" />
        <script src="../videojs/video.min.js"></script>
        <script src="../videojs/nuevo.min.js"></script>
        
        <!--Video tag setup-->
        <video id="player_one" class="video-js vjs-fluid" controls preload playsinline poster="images/poster.jpg">
        	<source src="//opencdn.b-cdn.net/video/demo_720.mp4" type="video/mp4">
        	<source src="//opencdn.b-cdn.net/video/demo_720.webm" type="video/webm">
        </video>
        
        <!--Initialize videojs and Nuevo plugin-->
        <script>
        var player = videojs('player_1');
        player.nuevoPlugin({ 
        	logotitle: "Nuevo plugin for Videojs",
        	logo: "images/logo.png",
        	logoposition: "RT",
        	logourl: "https://www.nuevodevel.com/nuevo/"
        });
        </script>
        

        Video Player is loading.
        Advertisement
        Current Time 0:00
        Duration -:-
        Loaded: 0%
        Stream Type LIVE
        Remaining Time -:-
        1x
          • Chapters
          • descriptions off, selected
          • captions off, selected

              Player Setup Source (Controlbar logo)

              <!--Initialize videojs and Nuevo plugin-->
              <script>
              var player = videojs('player_one');
              player.nuevoPlugin({ 
              	logotitle: "Nuevo plugin for Videojs",
              	logourl: "https://www.nuevodevel.com/nuevo/",
              	logocontrolbar: "images/logo2.png"
              });
              </script>
              

              Video Player is loading.
              Advertisement
              Current Time 0:00
              Duration -:-
              Loaded: 0%
              Stream Type LIVE
              Remaining Time -:-
              1x
                • Chapters
                • descriptions off, selected
                • captions off, selected

                    Player Setup Source (Logo Both)

                    <!--Initialize videojs and Nuevo plugin-->
                    <script>
                    var player = videojs('player_3');
                    player.nuevoPlugin({ 
                    	logotitle: "Nuevo plugin for Videojs",
                    	logo: "images/logo.png",
                    	logoposition: "RT",
                    	logotitle: "Nuevo plugin for Videojs",
                    	logourl: "https://www.nuevodevel.com/nuevo/",
                    	logocontrolbar: "images/logo2.png"
                    });
                    </script>