Ich suche ein download script für veoh.
Ich hab auch schon mal was probiert aber bis jetzt hatte
ich noch nicht den erwünschten erfolg
PHP-Code:
<?php
//Use veoh_filegrabber.php?video_url=http://www.veoh.com/videos/v1288822HBz3r9De
$video_url = (isset($_GET["video_url"])) ? strval($_GET["video_url"]) : "http://www.veoh.com/videos/v1288822HBz3r9De";
getFlv($video_url);
function getFlv($video_url)
{
preg_match('/http:\/\/www.veoh.com\/videos\/(.*)/', $video_url, $match);
$details_url = 'http://www.veoh.com/rest/video/' . $match[1] . '/details';
if ($details = file("$details_url"))
{
foreach($details as $value)
{
// fullPreviewHashPath="http://content.veoh.com/flash/p/1288822/77c44b0448a3602f79d059c8e91e556ebf9e1b13.flv?ct=bf1913ed8788db2c804b5961e62ad111906735f5ca8e489c"
if(preg_match('/fullPreviewHashPath=\"(.*?)\"/', $value, $match))
{
$url = $match[1];
}
}
header('Location:' . $url);
}
}
?>
Ich hoffe ihr könnt mir weiterhelfen.
mfg