sign in

Download an encoded video in PHP

Home | RecentChanges | All Pages | Help
Comparing version 2 and version 1 back

You must install the Pear HTTP Request lib, see http://pear.php.net/package/HTTP_Request


setBasicAuth("johndoe", "foo");
$req->sendRequest();
$real_url = $req->getResponseHeader("location");
$video_content = file_get_contents($real_url);
$file = fopen('myvideo.flv', 'wb');
fwrite($file, $video_content);
fclose($file);
?>
Powered by JunebugWiki v0.0.18