Framp
May 26 2008, 02:01 PM
With this how to you'll find out how to download videos from youtube without using any software or website. 1. Retrieve the id video from the link (the code after ‘v=’) example: http://www.youtube.com/watch?v=muP9eH2p2PI => muP9eH2p2PI 2. In your favourite browser go to http://youtube.com/v/{ID video} example: http://youtube.com/v/muP9eH2p2PI3. Link in the address bar will change. Replace ’swf/l.swf’ with ‘get_video’ and press Enter 4. Save your file  Here it's a little php code that will do this stuff CODE <?php $idvideo = $_GET['link']; $base = 'http://it.youtube.com'; $url_parsed = parse_url("$base/v/$idvideo"); $host = $url_parsed['host']; $path = $url_parsed['path']; $out = "HEAD $path HTTP/1.0\r\nHost: $host\r\n\r\n"; $fp = fsockopen($host, 80, $errno, $errstr, 30); fwrite($fp, $out);
while (!feof($fp)) { $line = fgets($fp, 8192); if (preg_match('/Location/', $line)){ die("Link : $base".preg_replace(array('/^Location: /','/swf\/l\.swf/'), array('','get_video'), $line)."\n"); } } ?> Byez
Comment/Reply (w/o sign-up)
encryptedwrath
May 31 2008, 08:42 PM
QUOTE(Framp @ May 26 2008, 03:01 PM)  With this how to you'll find out how to download videos from youtube without using any software or website. 1. Retrieve the id video from the link (the code after ‘v=’) example: http://www.youtube.com/watch?v=muP9eH2p2PI => muP9eH2p2PI 2. In your favourite browser go to http://youtube.com/v/{ID video} example: http://youtube.com/v/muP9eH2p2PI3. Link in the address bar will change. Replace ’swf/l.swf’ with ‘get_video’ and press Enter 4. Save your file  Here it's a little php code that will do this stuff CODE <?php $idvideo = $_GET['link']; $base = 'http://it.youtube.com'; $url_parsed = parse_url("$base/v/$idvideo"); $host = $url_parsed['host']; $path = $url_parsed['path']; $out = "HEAD $path HTTP/1.0\r\nHost: $host\r\n\r\n"; $fp = fsockopen($host, 80, $errno, $errstr, 30); fwrite($fp, $out);
while (!feof($fp)) { $line = fgets($fp, 8192); if (preg_match('/Location/', $line)){ die("Link : $base".preg_replace(array('/^Location: /','/swf\/l\.swf/'), array('','get_video'), $line)."\n"); } } ?> Byez Heh. Great little tip. Helped me a load! Thanks!
Comment/Reply (w/o sign-up)
ivantoar
Jun 1 2008, 11:53 AM
Whoa thank you Framp, you've posted a nice trick! I'm tired using websites and programs to download these videos
Comment/Reply (w/o sign-up)
Ancient Lewi
Jun 1 2008, 01:12 PM
THANK YOU SO MUCH, i been waiting over a year to find out howto do this!!!
Comment/Reply (w/o sign-up)
seba1killer
Jun 1 2008, 06:17 PM
Thanks Framp, i think that will add YouTube downloader to my web, it looks easy. Regards
Comment/Reply (w/o sign-up)
undftdx
Jun 1 2008, 07:15 PM
wow i had no clue you could do that with the php code. those programs that convert the videos are not reliable. Thanks for the tips!
Comment/Reply (w/o sign-up)
mm22
Jun 2 2008, 04:18 AM
really simple and useful piece of code... any idea regarding privacy/policy/legal aspects of, say, putting such a service on your website?
Comment/Reply (w/o sign-up)
leobrazer
Jun 2 2008, 03:40 PM
I am not good with codes and stuff, so for those who need a simpler way, go to www.keepvid.com, copy the video's url in the box provided and press download. After the download is complete, rename the file to [name].flv . This site also helps you to download videos from some other video sites. There is also an FLV player you can download from here.
Comment/Reply (w/o sign-up)
al-amakine
Jun 2 2008, 11:34 PM
thank youu so much now i can download any video yeahhhhhhhhhhhhhhh
Comment/Reply (w/o sign-up)
Aethix
Jun 2 2008, 11:51 PM
This is actually a pretty cool tip. I was using this program called "Gogago YouTube video player" that allows me to watch the youtube video and also download the files, but it was kinda bulky for what it did.
Comment/Reply (w/o sign-up)
rpgsearcherz
Jan 5 2009, 06:24 PM
Wow, that's a pretty cool little trick. Does this also happen to be how the commercial programs download the videos too?
Comment/Reply (w/o sign-up)
miladinoski
Jan 5 2009, 02:29 PM
QUOTE (minimcmonkey @ Nov 1 2008, 05:55 PM)  You shouldn't download from youtube, its not legal. And its contributing to them being sued by companies who's work is being put on youtube. It would not be good if youtube were to be closed down because so many people were suing Google for copyright violations. In fact actually it is legal dude. And there are 2 cases of videos: - Copyrighted videos — protected by the DMCA if used in the public for commercial purposes so you can get in trouble but not if you use it for personal purposes (at home, with friends/family etc.)
- Non-copyrighted videos — not protected by any law, and can be used in commercial purposes. This doesn't mean that any video that doesn't have a copyright notice is not protected by copyright laws, quite the oposite! Only if the video is tagged as left in the public domain or has another license (like the CC ones) that permits playing it in the public, then and only then you can use it for commercial purposes.
It really isn't much of a big deal if you use it at home by me. Because you already have the video in the temporary internet files of your computer and you are just putting them to use. Or you are redownloading it because you just want to have it twice!
Comment/Reply (w/o sign-up)
ragav.bpl
Jan 2 2009, 09:40 AM
QUOTE (Framp @ May 26 2008, 07:31 PM)  <br />With this how to you'll find out how to download videos from youtube without using any software or website.<br /><br />1. Retrieve the id video from the link (the code after ‘v=’)<br />example: <a href="http://www.youtube.com/watch?v=muP9eH2p2PI" target="_blank">http://www.youtube.com/watch?v=muP9eH2p2PI</a> => muP9eH2p2PI<br />2. In your favourite browser go to <a href="http://youtube.com/v/{ID" target="_blank">http://youtube.com/v/{ID</a> video}<br />example: <a href="http://youtube.com/v/muP9eH2p2PI" target="_blank">http://youtube.com/v/muP9eH2p2PI</a><br />3. Link in the address bar will change. Replace ’swf/l.swf’ with ‘get_video’ and press Enter<br />4. Save your file<br /><img src="style_emoticons/default/biggrin.gif" style="vertical-align:middle" emoid=":D" border="0" alt="biggrin.gif" /><br /><br />Here it's a little php code that will do this stuff<br /> CODE <?php <br /> $idvideo = $_GET['link'];<br /> $base = 'http://it.youtube.com';<br /> $url_parsed = parse_url("$base/v/$idvideo");<br /> $host = $url_parsed['host'];<br /> $path = $url_parsed['path'];<br /> $out = "HEAD $path HTTP/1.0\r\nHost: $host\r\n\r\n";<br /> $fp = fsockopen($host, 80, $errno, $errstr, 30);<br /> fwrite($fp, $out);<br /> <br /> while (!feof($fp)) {<br /> $line = fgets($fp, 8192);<br /> if (preg_match('/Location/', $line)){<br /> die("Link : $base".preg_replace(array('/^Location: /','/swf\/l\.swf/'), array('','get_video'), $line)."\n");<br /> }<br /> }<br /> ?> <br /><br />Byez<br /> <br /><br /><br /> Hello Framp.... I appreciate your work can you also tell a method of downloading videos from metacafe, megaporn etc. sites And i would also like to inform every1 a site that never fails to downlaod the videos from aroung 100 sites that is click hereDISCLAIMER:-- I am not trying to advertise any other site on this forum and neither this is my site... I am just trying to help those who want a direct method to download the videos hope you will not take it as advertisement as we are here to help each other
Comment/Reply (w/o sign-up)
contactskn
Dec 17 2008, 08:28 AM
Dear friend thank you very much for such a good hint it will be helpfull to everyone I think. Thanks again.
Comment/Reply (w/o sign-up)
sabrina0708
Dec 17 2008, 06:26 AM
QUOTE (Jezstarr @ Nov 1 2008, 12:00 PM)  There's tonnes of programs to download youtube videos now, i like to use keepvid i think it is. I'm aware that you can even download the video in high quality which Isn't even displayed when watched on youtube! But nevertheless great work FRAMP! I'm using Keepvid too. Just input the YouTube video URL, and then click download, even you could select the video format to save on the computer.
Comment/Reply (w/o sign-up)
Recent Queries:--
can flashget download youtube - 0.71 hr back. (1)
-
how to download videos from websites - 2.71 hr back. (1)
-
download from megaporn - 12.36 hr back. (2)
-
you tube fp - 14.02 hr back. (1)
-
how to downloads video - 18.14 hr back. (1)
-
how to download youtube using flashget - 21.20 hr back. (1)
-
toyota - 22.72 hr back. (1)
-
can you down load videos from you tube - 23.52 hr back. (1)
-
how to download videos on sites like youtube google - 24.41 hr back. (1)
-
how to download to megaporn? - 28.99 hr back. (1)
-
www.youtube.com port 80 - 37.06 hr back. (1)
-
uk.youtube download - 38.61 hr back. (1)
-
how to get videos from youtube without using programs or websites - 40.98 hr back. (2)
-
download youtube url is legal - 48.73 hr back. (1)
Similar Topics
Keywords : download, youtube, videos, softwares, websites
- How To Download Any Flv Files From Any Sites
(7)
How To Extract The Audio From Youtube Videos
get an mp3 file from youtube (6) How To Extract The Audio From YouTube Videos This lovely simple tutorial will tell you how
to extract the audio from YouTube videos. Obviously , I am not in any way advocating that you take
copyrighted music that is available illegally in video-form on YouTube and extract the audio from
those videos rather than going down to HMV and buying the music. In this tutorial I will be using
the following video: http://uk.youtube.com/watch?v=gUhhRc5eWNw Firstly, you download the video,
which is simple. Just go to www.downloadyoutubevideos.com and paste the video....
Tutorial : Hide Folder Without Any Softwares
Descriptive enough! (10) It's easy, just a few steps and your folder will be hidden First step : Create folder, name it
using alt+0160 Second : A folder will be created with name 1 space, then right click the folder,
properties, customize, change icon, see for a blank icon and press apply Enjoy Video tutorial
uploaded by me http://www.youtube.com/watch?v=EW8dD3KeUJk Have fun.....
Download Files Off Esnips.com
even now that the download button is gone! (0) hey everyone, i am sure that many of you may have heard of esnips , which is basically online file
storage/sharing. you can now find almost any file imaginable on esnips, and in many ways it is
better than rapidshare. previously, once you are signed in to esnips, you were able to download any
esnips file via a button only viewable to members. back then, there was a method to download any
file without even signing in. then, probably due to legal issues, users were able to choose whether
or not people could download their files. the hack mentioned above, though, still....
How Can I Create Websites With Free Software?
A challenge given to me by David of Essex (not David Essex) (16) OK I've done it! made a selection of tutorials and programs I'm Going to be making a CD with
all this on if anyone is interested... So The Challenge! To Find Open Source/Free software and
build a website with it Flash NO Javascript YES HTML YES PHP YES The Software KompoZer
in the end its the best! it has ftp WYSIWYG and Raw code editing so its satisfying everyone
/smile.gif" style="vertical-align:middle" emoid=":)" border="0" alt="smile.gif" /> FTPcommander
is brilliant! GIMP An excellent image editing program and as always FREE! Ok s....
Creating Navigation For Html Websites
Have a common navigation menu for the whole website! (12) Pre-requisite: HTML, inline frame tags 1 Attachment(.zip) included. Updates : 29-12-07: Doctype
added in example files (Advised by jlhaslip) Designing a whole website takes a lot of planning
and organization. Designing a proper navigation system is a basic step in building your website. If
you are developing webpages in html you would have observed that as you go on creating pages it
becomes difficult to maintain the links to the pages. This article will guide you in developing a
common navigation menu for your website. It describes three ways, so if you don'....
[asp Tutorial]basic Info & Download/installation Tutorial For Asp.net 2.0
Tutorial Type:Beginner-Advance (1) Basic Info & Download/Installation Tutorial for ASP.NET 2.0 Introduction Well I
received a book about programming in ASP 2.0 and was ask to review it after I went through this
book. In my success I was able to download and install the software needed in order to get it
running on my computer. So those would like to like to learn to program in ASP or refresh your mind.
Then this tutorial I am providing will give you some basic information on ASP and install the
software needed to get ASP running. Unless you already have a windows base hosting provider,....
How To Fix Problems With Shareaza
ONLY for people to download LEGAL files with. (1) Can't run shareaza and surf the internet at the same time? There could be two
problems: Your uploads are killing your downloads and/or you are using Windows 95/98/ME. If you
are uploading constantly and havent limited the bandwidth then it is likely that you are killing
your download speed which is affecting your ability to surf the web and do other tasks. If you
are uploading lots and download speeds are suffering: Start Shareaza. Click on the Tools menu,
then click Shareaza Settings. In the box that just popped up, there is a list of men....
Download Videos From Sites & Convert It.
especially sites like youtube, google etc... (28) This tutorial shows you how to download videos from sites like YouTube, Google, Break etc, which
runs is in the extension of .flv(Flash Video), and then convert it to .avi or .mpg format. First of
all, go to http://keepvid.com This site support the download of the sites listed below. QUOTE
Angry Alien, ArtistDirect, Blastro, Blennus, Blip.tv, Bofunk, Bolt, Break.com, Castpost, Current TV,
Dailymotion, DevilDucky, FindVideos, Free Video Blog, Google Video, Grinvi, Grouper, iFilm, LuluTV,
Metacafe, Midis.biz, Music.com, MusicVideoCodes.info, MySpace, MySpace Video ....
How To Convert Any Format Video To Dvd Format
convert videos on your computer to DVD format and burn them to a playa (0) How to Convert any Format Video to DVD Format Easily convert videos on your
computer to DVD format and burn them to a playable DVD disk. by
brautigam - 7/10/06 Programs Needed: WinAVI Video Converter Folder2Iso
Nero 7 Ultra Edition (or an equivilent DVD burning software with a "Burn Image to Disk" feature)
Step 1) a. Open up WinAVIVideoConverter (Don't worry if it says something about
your codecs, just press close). b. Click on convert to DVD in the bottom right. c. Find ....
How To Download From Brturbo
Using flashget (1) How to download from brturbo 1 ) goto main flashget options 2 ) goto proxy tab click "add" 3 )
enter BrTurbo in title box 4 ) check the HTTP circle 5 ) enter 200.199.201.81 in Server box 6 )
enter 80 in Port box 7 ) click OK to close proxy box 8 ) go to connection tab 9 ) enter 500 for
Connection 10 ) enter 500 for data 11 ) value between 5-10 in retry delay 12 ) copy your BrTurbo
link 13 ) "paste url" into flashget 14 ) an "add new download" box will appear 15 ) under general
tab enter 10 in split file part simultaneous box 16 ) go to advanced tab 17 ) in proxy box s....
Php Menu Bulding Script And Site Template
available for download (0) A Php Menu-builder Tutorial This Sidebar Menu-builder code and the php scripts are adapted from
a Tutorial on the Astahost.com Forum titled : CMS101 - Content Management System Design .
Since the original tutorial's author (vujsa) did such a marvellous job of describing the system
in the original Topic posting, I will not attempt to explain it here, rather, I invite you to have a
look at his Topic and learn from it. The Basic tutorial provided coding for developing a table-based
web-site template which used php includes and embedded data to create a &....
Ie Download Limit
(0) If you have ever tried to download several things simultaneously through IE then you may have
noticed that it doesn't work quite the way you may have hoped it to. This is because IE limits
the amount of simultaneous downloads to two. This is done so that the perceived download progress
appears to be tolerable. If you have a high speed connection then your browser should be able to
handle a few more downloads. Here is 2 different steps I found to increase your number of
connections. Have fun! QUOTE This is to increase the the number of max downloads to 10. 1. S....
How To: Change Your Website's Index File
a simple trick using .htaccess (24) How To: Change Your Website's Index File a simple trick using the .htaccess file A simple
tutorial which only involves editing one little file. Useful for those of us who have mime-typed
extensions or who are creating lots of test design files and want an easy way to make the design
they like best their default file. Create a file called .htaccess in the /public_html/ folder if
you don't have it. I think one should be there already when you get your site so if it isn't
you should create it anyway! In the file write the following: CODE Direct....
Looking for download, youtube, videos, softwares, websites
|
Searching Video's for download, youtube, videos, softwares, websites
|
advertisement
|
|