Most servers (including those used by GoDaddy) do not by default support the corresponding MIME types for OGG files. In this case, you need to set the appropriate MIME types for OGG files if you want HTML5 audio players to work correctly in Firefox. So, for the Apache server, you need to add the following to your .htaccess file:
AddType audio/ogg .oga AddType video/ogg .ogv AddType application/ogg .ogg
Obviously, other browsers will guess the MIME type based on the file extension if the MIME type is not supported.
If you need more information about this, check out this page on the Mozilla Developer Network: https://developer.mozilla.org/en/Configuring_servers_for_Ogg_media
Brian hadday
source share