Name is required.
Email address is required.
Invalid email address
Answer is required.
Exceeding max length of 5KB

Playlist: track thumbnails still not working on load


Dear Devs,

Reffering to this:
http://support.jwplayer.com/customer/en/portal/questions/11341888--load-playlist-thumbnails-not-loading?new=11341888

After Updating to 6.12.4965 (using flash-mode) the thumbnails are still not shown after calling jwplayer().load(PLAYLIST)...

Any Options beside calling setup?

And if i must use setup, do i have to resign functions to events like onComplete again?

Many Thanks in Advance!

3 Community Answers

Cooper Reid

JW Player Support Agent  
0 rated :

The best option at this point is to continue using the setup call to load a new playlist (with new thumbs). Also, you will have to rebind the events to the player after the subsequent setup call. I recommend writing some utility functions to handle this to make it easier, eg:

var bindEvents = function() {
jwplayer().onComplete(function() {});
jwplayer().onTime(function() {});
jwplayer().onTSeekfunction() {});
}

var buildPlayer = function(playlist) {
jwplayer({playlist: playlist});
bindEvents();
}

-Cooper

dominik.sigmund

User  
0 rated :

Dear Copper,

Thanks for your Answer.
Then I will perform some code cleanup and do as you suggest :-)

Cooper Reid

JW Player Support Agent  
0 rated :

Sounds good -
Cooper

This question has received the maximum number of answers.