
.load(PLAYLIST): Thumbnails not loading
Dear Devs,
I have a problem, which occured after an update of jwplayer (i assume, because at some point in development, what i wanted worked):
We have an internal videoplayer (intranet) that plays videos and shows thumbnails.
Our setup Code is like this:
jwplayer("player_container").setup({
playlist:[{
sources:[{
file: "http://fs-fm-iptv.br-edv.brnet.int/content/vf03/ard/2015/02/01/20/archive.smil"
}],
tracks:[{
file:"http://fs-fm-iptv.br-edv.brnet.int/content/vf03/ard/2015/02/01/20/archive.vtt",
kind: "thumbnails"
},{
file:"http://fs-fm-iptv.br-edv.brnet.int/content/vf03/ard/2015/02/01/20/subtitles.vtt",
kind: "captions",
label: "Untertitel",
"default":false
}]
}],
duration: 3599,
skin: "../jwplayer/five.xml",
autostart:true,
controls:true,
volume: 50,
width: "600px",
aspectratio: "16:9",
stagevideo:true,
primary: "html5",
flashplayer:"../jwplayer/jwplayer.flash.swf",
rtmp: {
bufferlength: 3
},
controlbar: "bottom"
});
And the Thumbnails are shown perfectly.
As soon as i use the load-method, he keyframes will not show up:
function load(){
jwplayer().load(
[{
sources:[{
file: "http://fs-fm-iptv.br-edv.brnet.int/content/vf03/ard/2015/02/01/20/archive.smil"
}],
tracks:[{
file:"http://fs-fm-iptv.br-edv.brnet.int/content/vf03/ard/2015/02/01/20/archive.vtt",
kind: "thumbnails"
},{
file:"http://fs-fm-iptv.br-edv.brnet.int/content/vf03/ard/2015/02/01/20/subtitles.vtt",
kind: "captions",
label: "Untertitel",
"default":false
}]
}]);
jwplayer().play(true);
}
HTML is just a div with id player_container.
Id love to show you the site, but it is not reachable via internet.
We use the player 6.11.4923 And the Flashplayer 16.0.0.296
Many thanks for Ideas!