Watch time limit


This video can play only 15 seconds.
After 15 second limit, appropriate message will be displayed.

Player setup Code Source

<!--Initize videojs and plugins-->
<script>
	var player = videojs('player_one');
	player.nuevo({ 
		limit: 15,
		limiturl: '//path-to-limit-website-page',
		limitmessage: 'Your message text' // optional
	});
</script>

Default limit text message is: "Watch full video on". You can set it to any other text using option 'limitmessage'.
For full documentation check Nuevodevel Tutorial.