you can make the download automatic instead of that 4 step thing i will fix it up if you want but it will cost you
anyone notice all youtube script aint working anymore?
Collapse
X
-
That works on mobile!
Anyway, we can make a php script that works like IDM for downlaoding videos of youtube.mysterio.al - programming is a functional art
Comment
-
PHP Code:<?php
if(isset($_GET['u'])){
$v = urldecode($_GET['u']);
$f = explode("fmt=",$v);
if($f[1] == 17){ // 3gp
header("Content-Type: video/3gp");
header("Content-Disposition: attachment; filename=\"video.3gp\"");
}
elseif($f[1] == 18){ // mp4
header("Content-Type: video/mp4");
header("Content-Disposition: attachment; filename=\"video.mp4\"");
}
else{ // flv
header("Content-Type: video/x-flv");
header("Content-Disposition: attachment; filename=\"video.flv\"");
}
readfile($v);
flush();
exit();
}else{
$yu = 'http://www.youtube.com/watch?v=qGyfaoUAWtM';
if(isset($_GET["yu"])) $yu = $_GET["yu"];
$c = file_get_contents($yu);
if(preg_match('/"video_id": "(.*?)"/', $c, $m) && preg_match('/"t": "(.*?)"/', $c, $m1)){
$id = $m[1];
$t = $m1[1];
$u = "http://www.youtube.com/get_video?video_id=".$id."&t=".$t;
}
?>
<html>
<head>
<title>YouTube Fixed - Coding-Talk.com</title>
</head>
<body>
<h1>Youtube Url:</h1>
<form method="get" id="form" onSubmit="<?php echo $_SERVER['PHP_SELF']?>">
<input type="text" name="yu" id="yu" size="80" value="<?php echo $yu ?>"/> <input type="submit" name="b" id="b" value="Load" />
</form>
<h1>Preview:</h1>
<img src="http://img.youtube.com/vi/<?php echo $id?>/1.jpg" alt="Preview 1" />
<img src="http://img.youtube.com/vi/<?php echo $id?>/2.jpg" alt="Preview 2" />
<img src="http://img.youtube.com/vi/<?php echo $id?>/3.jpg" alt="Preview 3" />
<h1>Downloads:</h1>
<a href="<?php echo $_SERVER['PHP_SELF'].'?u='.urlencode($u)?>">Download FLV</a><br />
<a href="<?php echo $_SERVER['PHP_SELF'].'?fmt=18&u='.urlencode($u."&fmt=18")?>">Download MP4</a><br />
<a href="<?php echo $_SERVER['PHP_SELF'].'?fmt=17&u='.urlencode($u."&fmt=17")?>">Download 3GP</a>
<br><br><br>
</body>
</html>
<?php
}
?>Last edited by opticalpigion; 29.03.10, 04:21.
Comment
-
hey i found vidz of this site working fine
Rajvideo.com Free Mobilie 3GP,MP4,FLV Videos Download
if any 1 can post this script here :PBuying mobile traffic, PM me with your traffic details
Comment
-
yes, youtube script working on RajVideo.com Free Videos Download | Hot Videos| Desi Videos | Desi Girls | Indian Girls| !! on all mobile desktop pc and all browsers. try to download it
Comment
-
I also fixed mine..My Blog: http://jhommark.blogspot.com
My Facebook: http://www.facebook.com/jhommark
My Official Site: http://www.undergroundweb.tk
My Community Site: http://undergroundwap.xtreemhost.com
Comment
Comment