Live streaming

Video Player is loading.
Advertisement
Current Time 0:00
Duration 0:00
Loaded: 0%
Stream Type LIVE
Remaining Time 0:00
1x
  • Chapters
  • descriptions off, selected
  • captions off, selected
    x
    ZOOM HELP
    Drag zoomed area using your mouse.
    100%
    We cannot guarantee each live stream connection. Please report to us if you find example not connecting.

    Basic Code Setup

    <!--Load skin css, videojs and nuevo plugin inside <body> section-->
    <link href="../skins/nuevo/videojs.min.css" rel="stylesheet" type="text/css" />
    <script src="../video.min.js"></script>
    <script src="../nuevo.min.js"></script>
    
    <!--Video tag setup-->
    <video id="player_one" class="video-js vjs-fluid" controls preload playsinline poster="../examples/assets/images/poster.jpg">
    	<source src="path-to-live-stream.m3u8" type="application/x-mpegURL">
    </video>
    
    <!--Initialize the player and plugin-->
    <script>
    	var player = videojs('player_one)';
    	player.nuevo({ 
    		//option_name: option_value, option_name: value
    	}); 
    </script>
    
    On Nuevodevel.com website you can find description of the "offline" plugin, that you may consider to use in case when live stream os not currently available.