So I'm coding this webpage for my band and I'm trying to write as much as possible in straight HTML and/or PHP to make it digestable by most popular browsers without needing a bunch of plugins. In our tracks section I've been playing around with different options to stream our music. Right now I have action buttons that call an .m3u file when clicked, which then references the actual mp3 file for streaming audio.
This is a beautiful thing under IE, but from what I can tell, Netscape/Firefox-Derivatives are actually downloading the .m3u file to disk and then attempting to launch the file locally. The result is that Media Player opens and gives the 'cannot locate file' error because instead of looking on my web server for the mp3 file, the dowloaded m3u file is essentially telling Media Player to look for the mp3 in a sub-directory of Netscape's download folder (which of course doesn't exist).
So... clearly Netscape/Firefox has a problem with the way it handles .m3u files. That said, I'm left with basically two options.
1) Figure out a way to tell Netscape how handle .m3u files and pass that information on to every user who visits the site with Netscape or Firefox (not practical for my site visitors).
or
2) Figure out a better way to stream my mp3s in a way that a. Netscape/Firefox likes; b. Still protects my content from "Right-click/Save-as"; and c. Still works with IE. (Sounds like a winner to me).
Suggestions???
p.s. I'd like to stay away from coding Flash since I don't know much about it and I want to stay with .mp3 because it's a pretty universal format.
Here is the website -- Click on 'tracks' to see the page in question.
Here is my code for the page in question
This is a beautiful thing under IE, but from what I can tell, Netscape/Firefox-Derivatives are actually downloading the .m3u file to disk and then attempting to launch the file locally. The result is that Media Player opens and gives the 'cannot locate file' error because instead of looking on my web server for the mp3 file, the dowloaded m3u file is essentially telling Media Player to look for the mp3 in a sub-directory of Netscape's download folder (which of course doesn't exist).
So... clearly Netscape/Firefox has a problem with the way it handles .m3u files. That said, I'm left with basically two options.
1) Figure out a way to tell Netscape how handle .m3u files and pass that information on to every user who visits the site with Netscape or Firefox (not practical for my site visitors).
or
2) Figure out a better way to stream my mp3s in a way that a. Netscape/Firefox likes; b. Still protects my content from "Right-click/Save-as"; and c. Still works with IE. (Sounds like a winner to me).
Suggestions???
p.s. I'd like to stay away from coding Flash since I don't know much about it and I want to stay with .mp3 because it's a pretty universal format.
Here is the website -- Click on 'tracks' to see the page in question.
Here is my code for the page in question