https://stream.nuevodevel.com/hls/intro2/hls/800/playlist.m3u8

Skip Intro Plugin

The plugin allows you to skip a part of the video to the desired time position. The plugin features four easy to understand options. In video example above, the Skip intro button appears at 00:05 and is showing for 10 seconds. If the button is clicked, the video is forwarded to the 00:58 time position.
Check out the setup code below.
Code snippet
<script src="/videojs/plugins/videojs.skipintro.js"></script>
<script>
var player = videojs("myplayer", {license: "key");
player.nuevo();
player.skipintro ({ skipStart:2, skipDuration:10, skipTarget:30 })
</script>
  • skipStart - time position to show skip button
  • skipDuration - duration time to keep skip button showing
  • skipTarget - time position to jump in video after intro
  • skipText - optional skip button text ("Skip Intro" by default).
date}