Videojs - Resume video playback

Resume playback from the time it was left

Start plyaback, wait some seconds and refresh the page to see that video playback is resumed at the point in time it was left.

Nuevo plugin features new option to resume video playback at the point in time it was left.
You need to enable (true) resume option and set some unique video identifier for option video_id.

Check example code setup below.
Code snippet
<script>
var player = videojs('example_video_1');
player.nuevo({
video_id: 'unique Id',
resume: true
});
</script>