Hello, I would like to encrypt (not-in-a secure way but for readability) the file location on the main page of mine. I have done the following;
$script.=
jwplayer("video-setup").setup({
sources: [
{ file: "http://example.org/getV.php?vID='.urlencode(mc_encrypt($link, ENCRYPTION_KEY)).",
type: "mp4",
label: "..."
}...
I have cheked the functions, outputs everythigs seems okay, human-readable file location is avaliable but JWPlayer cannot play the content. Is this method unsupported or is there anything I have to do extra?
↧