
A couple of JWPlayer coding questions
I am trying to switch from JWPlayer 5 playing flv videos to JWPlayer 6 playing mp4 videos. I have a test page (http://www.chef-de-race.com/video/classic_preps/2015_copy(1)/2015_classic_prep_videos.htm) that seems to work very well. There are just a couple of issues. In the version 5 page I had a placeholder image that displayed before and after each video was played. I can't successfully add a placeholder image in version 6. Can I do that? Also, the videos in version 6 are running sequentially without a pause whereas they didn't in version 5. How do I get the player to stop after each video selected from the playlist ends?
This is the current relevant coding. Are there lines I can add to address these two issues? Thanks.
<div id="container">Loading the player ...</div>
<script type="text/javascript">
jwplayer("container").setup({
playlist: [
{
file: "/video/classic_preps/2015_copy(1)/150119 - Smarty Jones Stakes_x264.mp4",
title: "2015 SMARTY JONES STAKES, JAN. 19, OP",
description: "1ST: FAR RIGHT, 2ND: BAYERD, 3RD: MR. Z<br />1 MILE, DIRT, FST, 1:38.43; MARGINS: 1 3/4, 1/2"
},
{
file: "/video/classic_preps/2015_copy(1)/150117 - Pepsi Cola Stakes (R)_x264.mp4",
title: "2015 PEPSI COLA STAKES (R), JAN. 17, SUN",
description: "1ST: SOUTHERN FIRE, 2ND: LUX, 3RD: LIBERTY LOVER<br />6 FURLONGS, DIRT, FST, 1:09.88; MARGINS: 3 1/2, NECK"
},
{
file: "/video/classic_preps/2015_copy(1)/150117 - LeComte Stakes (G3)_x264.mp4",
title: "2015 LECOMTE STAKES-G3, JAN. 17, FG",
description: "1ST: INTERNATIONAL STAR, 2ND: WAR STORY, 3RD: TIZNOW R J<br />1 MILE & 70 YARDS, DIRT, FST, 1:43.62; MARGINS: 2 1/2, HEAD"
},
{
file: "/video/classic_preps/2015_copy(1)/150117 - Groovy Stakes (R)_x264.mp4",
title: "2015 GROOVY STAKES (R), JAN. 17, HOU",
description: "1ST: A M MILKY WAY, 2ND: SUPERMASON, 3RD: MY NEPHEW ANDREW<br />6 FURLONGS, DIRT, FST, 1:11.05; MARGINS: 1 1/4, 1 1/4"
},
{
file: "/video/classic_preps/2015_copy(1)/150117 - California Derby_x264.mp4",
title: "2015 CALIFORNIA DERBY, JAN. 17, GG",
description: "1ST: CROSS THE LINE, 2ND: SOUL DRIVER, 3RD: STAND AND SALUTE<br />1 1/16TH MILES, AWS, FST, 1:44.79; MARGINS: 1 3/4, NECK"
},
{
file: "/video/classic_preps/2015_copy(1)/150110 - Sham Stakes (G3)_x264.mp4",
title: "2015 SHAM STAKES-G3, JAN. 10, SA",
description: "1ST: CALCULATOR, 2ND: ROCK SHANDY, 3RD: PIONEEROF THE WEST<br />1 MILE, DIRT, FST, 1:34.88; MARGINS: 4 1/4, 4 1/4"
}
],
height: 600,
width: 575,
listbar: {
position: "bottom",
size: 300
}
});
</script>