şöyle dene

$dosya=file_get_contents("http://xxx/sadx.wmv");
header("Content-Type: application/force-download");
header("Content-Disposition: attachment; filename=".$dosya);
header("Content-Transfer-Encoding: binary");
header('Content-Length: '.filesize($dosya));
echo $dosya;