
HLS seek
A solution was found to seek in a HLS video?
We work with chapters, so to seek on the begin of chapter is critical.
http://support.jwplayer.com/customer/portal/questions/6244087-hls-seek
On this exemple :
http://support.jwplayer.com/customer/portal/articles/1430240-hls-adaptive-streaming
var myPlayer = jwplayer('container');
myPlayer.seek(60); //realy seek to56
//even after loading, it doesn't works
var myPlayer = jwplayer('container');
myPlayer.seek(60); //realy 56
setTimeout(function() { //wait 4 seconds
myPlayer.seek(57); //57 should be downloaded
}, 4000);