Videojs player - start Time

STANDARD
PREMIUM
GOLD

Video start time position

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 playsinilen preload startTime=33>
2. As videojs option:
Code snippet
var player = videojs ({ startTime:33 })
3. As Nuevo plugin option:
Code snippet
var player = videojs("myplayer")
player.nuevo({startTime:33})