View Single Post
Old 03-21-2010, 09:15 AM  
Brujah
Beer Money Baron
 
Brujah's Avatar
 
Industry Role:
Join Date: Jan 2001
Location: brujah / gmail
Posts: 22,157
Code:
$filename = $url.'video.mp4';
$ch = curl_init($filename);

curl_setopt($ch, CURLOPT_NOBODY, TRUE);
curl_exec($ch);

$ret = curl_getinfo($ch, CURLINFO_HTTP_CODE);
if ($ret >= '400')
{
	$filename = $url.'video.flv';
}

curl_close($ch);
__________________
Brujah is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote