
7.8.1: Playlist sources don't fallback
If the first source on the list has an error, jwplayer 7.8.1 simply displays an error message instead of attempting to play the next media file in the sources list. Is there a way to tell it to automatically play the next source (fallback) or a way to manually select the next source and play it?
Example code:
<html>
<head>
<script type="text/javascript" src="jscripts/jquery-1.7.min.js"></script>
<script type="text/javascript" src="jwplayer7/jwplayer.js"></script>
<script type="text/javascript">
$(function(){
player = jwplayer("player").setup({
sources: [{
file: "nofile.mp4",
}, {
file: "video.mp4"
}]
});
});
</script>
</head>
<body>
<div id="player"></div>
</body>
</html>