Videojs player - start Time

The Nuevo plugin features an option to start the video at the given time position. The user may order to start the video at the given time position in three different ways.

1. When you set start time as <video> element attribute..
Code snippet
<video class="video-js vjs-fluid" control playsinline preload startTime=33>
2. As videojs option:
Code snippet
var player = videojs ("myplayer", { license: "key", startTime:33 })
3. As Nuevo plugin option:
Code snippet
var player = videojs("myplayer", {license: "key"})
player.nuevo({startTime:33})