Videojs - Resume video playback

Start plyaback, wait some seconds, and refresh the page to see that video playback is resumed at the point in time it was left.
The Nuevo plugin features an option to resume video playback at the point in time it was left.
You need to enable (true) resume option and set a unique video identifier for video_id option.

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