I read the following question and answer http://stackoverflow.com/questions/1995589/html5-audio-safari-live-broadcast-vs-not
Still unclear how to resolve the issue in my situation:
The audio files (mp3) I am working with are stored in mySQL and pulled into the browser by a PHP script that sends the Content-length and Content-type headers ahead of the data. This works perfectly in Firefox, Opera, Chrome, IE 6,7,8.
For some reason, though, Safari is unable to determine the file size and insists the data is a stream, both with audio and embed tags...
The suggestion in the above post has to do with a server plugin that I assume would have to do with serving the file from a file system path, not a database. How do I resolve this with my data being served from mySQL?
Thanks,
M