IS THERE AN MP3 PLAYER SCRIPT FOR A WEBSITE THAT YOU CAN HIDE THE MP3 FILES FROM THE PUBLIC?

Question by icepixi:
Is there an mp3 player script for a website that you can hide the mp3 files from the public?
I’m in desperate need of an mp3 player script for my website that is able to hide the mp3 files from the public. Meaning that even if they go through the source of the script they will not be able to find the mp3s.
I’m also trying to figure out a way to discourage people from direct linking to the player itself from other sites. Is either of these possible?
I’m not on a free hosting site. So please no flash players like myflashfetish or anything of that sort.
——————————————
Answer by EFG
No. Sorry
——————————————
What do you think? Answer below!









about 1 year ago
PHP definitely. The simplest way to do it just simply not showing the button, although with a little bit of workaround, people could just bypass the button and directly go to the link the button points to. If you need it to be secure, you’ll need to make some sort of IP logging.
about 1 year ago
Set a cookie when the button is clicked.
< ?
setcookie("disable_button", "jahsdfk75random_text4rhhd", time()+3600*24);
?>
Then check for the cookie, and display the button if there is no cookie.
< ?
if(!isset ($_COOKIE["disable_button"]))
{
?>
put the html button code here
< ?
}
?>
about 1 year ago
If you hide the filename, the player can’t play it. If you write a program to stream the audio, there’s no trace of the filename on the site, and there’s nothing to link to.