I did some further searching and I found this code posted on Digital Point. What are your opinions?
Code:
<?php
$filename="/path/to/your/file.flv";
$yourdomain = "yourdomain.com";
if (stristr($yourdomain, $_SERVER["HTTP_REFERER"]) || $_SERVER["HTTP_REFERER"]=="")
{
header("Content-type: video/flv");
echo file_get_contents($filename);
}
else
die ("You are not allowed to access this file");
?>
Unfortunately, I'm not sure how to get it to work although I understand what he means. :-/
http://forums.digitalpoint.com/showp...58&postcount=5