
Error loading player : No playable source found
Hi everyone,
I've a new project where I've to play tracks through multiple RTMP URL's.
As I don't have any Flash developer available, I found JW Player after some search and I match perfectly my needs.
First I tried with basic MP3 files and it's working fine but then when trying with the RTMP URL's, I got the error "Error loading player : No playable source found".
The URL is correct cause it works fine on the Akamai test player : http://support.akamai.com/flash/index.html
Is this something wrong with my configuration ?
Here it is :
<script type='text/javascript' src='/jwplayer/jwplayer.js'></script>
<script>jwplayer.key="...my_key..."</script>
<div id='player'>This div will be replaced by the JW Player.</div>
<script type='text/javascript'>
jwplayer('player').setup({
flashplayer: '/jwplayer/player.swf',
//autostart: 'true',
rtmp.subscribe:'true',
streamer: 'rtmp://PT.fms.retail.digiplug.com/ondemand/',
file: 'mp3:aka_prod/AE73D58C9E594BD8E0403C0A01021687?aifp=001&slist=/aka_prod/AE73D58C9E594BD8E0403C0A01021687&txid=68e1095e-3607-45f4-9c25-fc697bdb3959/%26auth%3Dda.a1bHbudhaZcgbRa9cYcLcUd1csd6a4dv-bre6GH-buya-rwECnoKAoCHz-kAmDmVlcmdldme'
});
</script>
Of course, I've tried to remove the "rtmp.subscribe" option just in case but that didn't changed anything
I also tried to add the "provider" option and to encode the URL to remove the special characters (?, = and &) but it's still not working ...
Please help !