What steps will reproduce the problem? 1. Point the player to any MP3 other than another_world.mp3 2. Problem even occurs on the Flash-MP3-Player.net's configurator 3. use this MP3: http://www.foodguyandmarcy.com/snacks/snack15.mp3
What is the expected output? What do you see instead?
MP3 plays fine but the progress bar doesn't move while playing the file, it stays stuck on the left hand side
What version of the product are you using? On what operating system?
Occurs on all Browsers except Firefox Tested Win/IE7, Win/Safari, Win/Chrome, Win/Firefox, MacOSX/Safari, MacOSX/Firefox
Please provide any additional information below.
Simple substitution of the test MP3 at http://flash-mp3-player.net/players/maxi/generator/ demonstrates the problem. Problem with Mini, Normal, Maxi and Multi players
Comment #1
Posted on Jul 4, 2009 by Massive OxThe problem can be caused by the server not sending a Content-Length header with the audio/mp3 stream.
Comment #2
Posted on Nov 26, 2009 by Helpful WombatI can confirm the Content-Length header tip, I had this problem and sending the header solved it.
Maybe this should not be marked as a bug.
Comment #3
Posted on Apr 16, 2011 by Grumpy HorseI've got the same problem..Could you explain me how to send this header plaese?
Comment #4
Posted on Apr 16, 2011 by Grumpy HorseI discovered that the problem is caused by this htaccess file:
mod_rewrite in use
RewriteEngine On RewriteBase /home
RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteCond %{REQUEST_URI} ^(home/component/option,com) [NC,OR] RewriteRule ^(.*) index.php
SetOutputFilter DEFLATE AddOutputFilter DEFLATE text/plain AddOutputFilter DEFLATE text/xml AddOutputFilter DEFLATE application/xhtml+xml AddOutputFilter DEFLATE text/css AddOutputFilter DEFLATE application/xml AddOutputFilter DEFLATE image/svg+xml AddOutputFilter DEFLATE application/rss+xml AddOutputFilter DEFLATE application/atom_xml AddOutputFilter DEFLATE application/x-javascript AddOutputFilter DEFLATE application/x-httpd-php AddOutputFilter DEFLATE application/x-httpd-fastphp AddOutputFilter DEFLATE application/x-httpd-eruby AddOutputFilter DEFLATE text/html SetEnvIfNoCase Request_URI .(?:gif|jpe?g|png)$ no-gzip dont-vary SetEnvIfNoCase Request_URI .(?:exe|t?gz|zip|bz2|sit|rar)$ no-gzip dont-vary SetEnvIfNoCase Request_URI .pdf$ no-gzip dont-vary SetEnvIfNoCase Request_URI .avi$ no-gzip dont-vary SetEnvIfNoCase Request_URI .mov$ no-gzip dont-vary SetEnvIfNoCase Request_URI .mp3$ no-gzip dont-vary SetEnvIfNoCase Request_URI .mp4$ no-gzip dont-vary SetEnvIfNoCase Request_URI .rm$ no-gzip dont-vary BrowserMatch ^Mozilla/4 gzip-only-text/html BrowserMatch ^Mozilla/4.0[678] no-gzip BrowserMatch \bMSIE !no-gzip !gzip-only-text/html
How con I fix it in order to show the progress bar?
Comment #5
Posted on Sep 28, 2012 by Massive HorseAdding the following in the .htaccess-file solved the problem for me.
SetOutputFilter DEFLATE SetEnvIfNoCase Request_URI .mp3$ no-gzip dont-vary
Status: New
Labels:
Type-Defect
Priority-Medium