By default, when playback starts, VOD media starts at 0, and live media starts at the client live point (MediaPlayer.LIVE_POINT). You can override the default behavior.
Pass a position to MediaPlayer.prepareToPlay
.
Browser TVSDK uses this position as the starting point for the asset.
No seek operation is required.
If the position is not inside the seekable range, the default positions are used.
For example:
var desiredPostion = //choose a value;
onStatusChange = function (event) {
case AdobePSDK.MediaPlayerStatus.INITIALIZED:
console.log("Player Status: INITIALIZED");
player.prepareToPlay(desiredPostion);
break;
}