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
Reply
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!
Reply
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
Reply
Ancient Lewi
Jun 1 2008, 01:12 PM
THANK YOU SO MUCH, i been waiting over a year to find out howto do this!!!
Reply
seba1killer
Jun 1 2008, 06:17 PM
Thanks Framp, i think that will add YouTube downloader to my web, it looks easy. Regards
Reply
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!
Reply
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?
Reply
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.
Reply
al-amakine
Jun 2 2008, 11:34 PM
thank youu so much now i can download any video yeahhhhhhhhhhhhhhh
Reply
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.
Reply
shddgfgc
Sep 23 2008, 11:28 AM
The best and easiest way is to have firefox with an addon fast video download 1.6.1 an icon will be seen on the bottom right aspect of the browser once you go to the site to download the video then click on the icon immediately it starts download u even can save it as .avi and .wmv it can be obtained from mozilla website on addons page
Reply
travstatesmen
Sep 19 2008, 10:55 PM
The technology that the web is built on, using browsers that cache everything to the local computer before it can be viewed, opens up such possibilities. Just take a trip through your Temporary Internet Files folder some time, and you will see what I mean. As delivi said in post #20 of this thread, you can grab videos that have been streamed to your Temporary Internet Files folder by searching for the get_video files and renaming them, adding a .flv extension to them. This is not doing anything to the website. This is not a violation of the YouTube TOS. You are merely manipulating files that you have legitimately downloaded to your computer already. It is the underlying technology of the web itself that allows for this. Compare, for instance, the technical difference between reading a web page in a browser as opposed to viewing a Windows Terminal Services session or Citrix or WinVNC session. With thin-client computing, you don't have to download anything, as all processing is done on the server end, and the only thing that gets transmitted across the network is the mouse movements/clicks, and keystrokes from the client side, and the screen information from the server side. I wonder what the World Wide Web would look like if it was based on RDP or ICA protocols instead of HTTP. Obviously the web servers would need to be a lot beefier, but it is the only way that I can think of to prevent people from making use of files such as delivi explained. Sorry, I tend to waffle sometimes. The bottom line is, you have the YouTube videos already on your local computer if you have streamed them fully, by watching them online. What you do with them then is up to you. Most people would either ignore them, as they don't even know that they are there, and then their computer dies one day because they never clean out their temp files. Either that or they have set their browser to automatically wipe clean the temp files every time the browser window is closed, trashing anything and everything in the cache. And then next time they want to view the same video, they connect to the YouTube site and download it all over again. What a waste of bandwidth!
Reply
minimcmonkey
Sep 19 2008, 10:06 PM
i think people should stop doing this. If this continues, more and more companies like the ones that are already sueing youtube, will take youtube to court. And it would not be good if youtube had to be taken off the web, all these codes and programmes are a complete missuse of youtube, and are contributing to the illegal use of it. PEOPLE STOP!!!!!!!
Reply
Framp
Jun 13 2008, 06:34 PM
QUOTE(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? Ah, don't worry, use the code freely
Reply
iGuest
Jun 13 2008, 07:50 AM
YouTubeRobot.Com today announces YouTube Robot 2.0, a tool that enables you to download video from YouTube.Com onto your PC, convert it to various formats to watch it when you are on the road on mobile devices like mobile phone, iPod, iPhone, Pocket PC, PSP, or Zune. YouTube Robot allows you to search for videos using keywords or browse video by category, author, channel, language, tags, etc. When you find something noteworthy, you can preview the video right in YouTube Robot and then download it onto the hard disk drive. The speed, at which you will be downloading, is very high: up to 5 times faster than other software when you download a single file and up to 4 times faster when you download multiple files at a time. Manual download is not the only option with YouTube Robot. You may as well schedule the download and conversion tasks to be executed automatically, even when you are not around. Downloading is followed by conversion to the format of your choice and uploading videos to a mobile device (if needed). For example, you can plug in iPod, select the video, go to bed, and when you wake up next morning, your iPod will be ready to play new YouTube videos. Product page: http://www.Youtuberobot.Com Direct download link: http://www.Youtuberobot.Com/download/utuberobot.Exe Company web-site: http://www.Youtuberobot.Com E-mail: support att youtuberobot.Com -reply by steveking
Reply
Recent Queries:--
how to download any video from youtube - 3.30 hr back. (1)
-
how to download the tend video - 5.57 hr back. (1)
-
how to download from you tube - 6.46 hr back. (1)
-
how to add you tube videos in a website buld in asp.net - 6.90 hr back. (2)
-
download youtube videos using flashget - 23.50 hr back. (1)
-
download button from youtube using nero - 47.43 hr back. (2)
-
deference between rdp and ica - 49.46 hr back. (2)
-
how to download youtube using flashget - 51.03 hr back. (1)
-
downloading videos using nero - 80.98 hr back. (1)
-
www.vdownloder.de - 82.94 hr back. (1)
-
http/1.0 beginners tutorial - 95.61 hr back. (1)
-
vdownloder - 99.16 hr back. (2)
-
download youtube video php script get_video? - 109.67 hr back. (1)
-
php fget flv - 116.35 hr back. (1)
Similar Topics
Keywords : download, youtube, videos, softwares, websites
- How To Download Any Flv Files From Any Sites
(6)
How To Extract The Audio From Youtube Videos
get an mp3 file from youtube (5) 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 alw....
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. ....
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 Di....
Looking for download, youtube, videos, softwares, websites
|
*RANDOM STUFF*
*SIMILAR VIDEOS*
Searching Video's for download, youtube, videos, softwares, websites
*MORE FROM TRAP17.COM*
|
advertisement
|
|