Quote:
Originally Posted by redlabour
Request for myvideo.de!
|
re download the attachment, and only re-upload the file dvid.php
Or simply edit your dvid.php and add this tag
PHP Code:
// myvideo.de, result = flv
if(preg_match("/http:\/\/(www\.)?myvideo\.de\/watch\/([0-9]*)/iU", $url, $sub)) {
$c = curl_init();
curl_setopt($c, CURLOPT_USERAGENT, $_SERVER['HTTP_USER_AGENT']);
curl_setopt($c, CURLOPT_URL, $url);
curl_setopt($c, CURLOPT_RETURNTRANSFER, 1);
$result = curl_exec($c);
curl_close($c);
if(preg_match("/swf\?V=\.\.\/moviex(.*\.flv)/Ui", $result, $d_link)) {
printf("http://statix.myvideo.de/moviex%s", $d_link[1]);
exit();
}
}
above // grouper.com, result = flv
Whatever u find easier, and myvideo.de support is added.
regards