|
Re: Re: Re: Re: Re: Does Zipping an MP3 lose any quality?
| quote: | Originally posted by Mr.Mystery
So you didn't read the rest of the thread then? |
come on, give him a break, it was the 3rd post....who looks past the first 2 sentences anyways....
| quote: | Originally posted by agentdansmith
Ok, I understand what you're saying but it's mainly so that when people click on "Download", it will actually start downloading instead of it starting to buffer and stream through their browser.
At least I now know that it wont affect the quality, thanks. |
and you don't want to use php to force downloads, there are a bunch of security issues, I don't think they would be a big problem, but there are risks.
another way is to place this in an .htaccess file in your song directory (id make it so that only your mp3's are in a certain directory, then place this in there).
"
ForceType application/octet-stream
Header set Content-Disposition attachment
"
this should make any .mp3 file link have a save as dialog when clicked. However the site I found this on said there might be problems with the new IE. But you can test it out.
|