Play part of video then refresh page in your browser.
Video playback will be resumed from time position it was left last time.
Code Setup
<!--Initialize player and plugin-->
<script>
var player = videojs('player_1');
player.nuevo({
video_id: 'unique Id',resume: true
});
</script>
Nuevo plugin includes option to resume playback of a video at the point in time it was left.
You need to enable (true) resume option and set some unique video_id identifier.
Resuming video is not possible when one of video ads system is in use.
Video_id identifier canbe set in multiple ways. Chcek this demo for details.