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

Slideshow in Version 6.x


Hi,

Under version 5.8, I was able to create an image slideshow using playlists and the following script:

playPreShow: function playPreShow(mainPlayList) {
var JWPlayLists = new Array(mainPlayList.length);
for (var index = 0; index < mainPlayList.length; index++) {
JWPlayLists[index] = {};
JWPlayLists[index].file = mainPlayList[index].File;
JWPlayLists[index].title = mainPlayList[index].Title;
JWPlayLists[index].duration = parseInt(mainPlayList[index].Duration.toString());
JWPlayLists[index].image = mainPlayList[index].Image;
if (mainPlayList[index].MediaTypeID === 2) {
JWPlayLists[index].provider = 'image';
}
if (mainPlayList[index].MediaTypeID === 1) {
JWPlayLists[index].provider = 'sound';
}
if (!!mainPlayList[index].URLLink) {
JWPlayLists[index].link = mainPlayList[index].URLLink;
}
}
jwplayer("mainVideo").stop();
jwplayer("mainVideo").load(JWPlayLists);
jwplayer("mainVideo").play(true);
}

The playlist format for version 6.x doesn't seem to support images in the playlist. Or does it ? If yes, can you provide an example ? Thanks.

3 Community Answers

Andrew

Best Answer  JW Player Support Agent  

Hi,

We no longer support images within a playlist via JW6.

View in conversation

Andrew

Best Answer  JW Player Support Agent  
0 rated :

Hi,

We no longer support images within a playlist via JW6.

lrmpham

User  
0 rated :

Do you have other controls that will support a slideshow-type presentation ? You used to have an image rotator but I don't see that anymore.

Andrew

JW Player Support Agent  
0 rated :

We no longer support this configuration. We only support video and audio files with JW6.

This question has received the maximum number of answers.