
Problems with Version 6
I have version 5 working perfectly. In my configuration the player is instantiated and hidden with no 'file' option on setup. When the user clicks a link, my code displays the player (popup)'loads' a url and then 'plays' using the Javascript API syntax for above.
For version 6 I have changed the HEAD section scripts as required by version 6 and I have installed the JS and SWF's correctly on my server (same locations as version 5), using exactly the same setup as for version 5.
However now when the links are clicked, the player appears as it should but I get an error message that says NO PLAYABLE SOURCES FOUND. The video sources are exactly the same MP4 files in he same location that work in version 5. I am currenly testing this from a localhost.
My setup script (which contains some ASP variables set at run time) is...
bc.. <div id="container"></div>
jwplayer("container").setup
({
skin:'<%=sFlashSkin %>',
image:'<%=sFlashImageUrl%>',
backcolor:'DCDCDC',
controlbar:'bottom',
volume:'20',
stretching:'<%=sFlashAR %>',
height:'<%=sPlyrHt %>',
width: '<%=sPlyrWd %>',
repeat:'none',
id:'container',
modes:[
{type: "flash", src: "../../includes/jwplayer.flash.swf"},
{type: "html5", config:{'provider':'video'}},
{type: "download", config:{'provider':'video'}}]
})
I have tried this with/without the version 5 modes block, (which I am not clear on whether needed for version 6). I have also run through your troubleshooting options. Same error always.
Suggestions please