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.