
JWPlayer cached on Chrome. Looping video
flowplayer.pl pulls a video URL from a database. On most browsers it works as expected. The first video plays, on completion, the server is queried and the next video autoplays. This should go on forever. On Chrome and Firefox it loops the same first video over and over. I've tried cache busting server side. Any suggestions on how to correct this?
A secondary issue is that when we use "autostart: true", the logo (watermark) does not display.
http://www.armchairtourist.com/roku_db/video_player/jwplayer/start.html
<!DOCTYPE html>
<html>
<head>
<meta charset='UTF-8'>
<title>JW6</title>
<script type='text/javascript' src='jwplayer.js'></script>
<script type='text/javascript'>jwplayer.key='XXXXXXXXXXXXXXX';</script>
</head>
<body>
<div id='myElement'>Loading the player...</div>
<script type='text/javascript'>
var cachebuster = Math.round(new Date().getTime() / 1000);
jwplayer('myElement').setup({
logo: {
file: 'http://www.armchairtourist.com/roku_db/watermark.png?cb=12346'
},
file: 'http://www.armchairtourist.com/roku_db/flowplayer.pl',
type: "mp4",
image: 'http://www.armchairtourist.com/roku_db/image.png',
margin: 8,
width: 640,
height: 360,
position: "top-left",
repeat: true,
});
</script>
</body>
</html>