within a PHP page I implented a Youtube player for playing playlists using the iframe API and want to switch to another playlist via:
player.loadPlaylist({
"listType": "playlist",
"list": "PL3EEBBA6DBCBE5705",
"index": 5,
"startSeconds": 50,
"suggestedQuality": 'hd720'
});
But why will be "startSeconds" ignored? The video with index 5 starts from the beginning and not after 50s.
Thanks!