Player 6 indicates that time remaining to play MP3 file is Infinity NaN
I am new to JW Player and working with JW Player 6. I am developing/testing with my localhost IIS server. The JWplayer setup function directly accesses an mp3 file (via http://..) residing on my web site hosted by 1and1, essentially as follows:
bc.. <div id='my-video'></div>
<script>
jwplayer('my-video').setup({
file: 'http://www.abaalkoreh.com/app/download/9999999/abcdef.mp3';
width: '480',
height: '40'
});
</script>
The player shows properly on the screen, but the number giving the remaining time (appearing on the right side) says Infinity instead of the expected number, as if JWPlayer doesn't find the file's EOF indicator. As a result, when the user starts the player (clicks the right arrow), the mp3 sound plays OK but the progress bar does not move and the position cannot be moved manually - it just bounces back to the starting line.
However, if I first download the same mp3 file to my localhost server and then run setup (as below) it works fine in all respects.
bc.. <div id='my-video'></div>
<script>
jwplayer('my-video').setup({
file: 'http://localhost/jwplayer/abcdef.mp3';
width: '480',
height: '40'
});
</script>
In summary, the JW Player shows time reamaining as infinity when setup accesses the web based file and then works perfectly when it accesses the downloaded version of the same file. Any suggestions would be very much appreciated.
Thank you.
Bernie