Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Does anybody know the VB or C# code to programmatically download a video from YouTube?

I have gone through all related questions on this site and the only code I have found (which uses the WebClient Class webclient.DownloadFileAsync) returns the text source of the video, but not the Flash video (.flv) file that needs to be downloaded?

Do you know any SDK or library which can help? I have also downloaded the GoogleAPI (YouTube DLL) but have not found a way of doing it.

share|improve this question

5 Answers

You can use web scraping and extract the information needed to download the video. It only requires about 5 lines of code.

If the YouTube URL is:

    http://www.youtube.com/watch?v=DYW50F42ss8

the HTML for the URL may look like the following near "t":

    "rv.5.view_count": "470136", "t": "vjVQa1PpcFPDxa83Hr1_9pftRUWdsMyJ10a2o8QZvIs%3D", "rv.6.id": "3f72CTDe4-0"

A regular expression that matches uniquely if the HTML is processed line by line is:

    \",\s*\"t\":\s*\"([^\"]+)

The download URL is then

    http://www.youtube.com/get_video.php?video_id=ID1&t=ID2

where ID1 is the ID from the input, DYW50F42ss8 in the example. ID2 is what comes after "t" with %3D replaced by "=", vjVQa1PpcFPDxa83Hr1_9pftRUWdsMyJ10a2o8QZvIs= in the example.

Thus the URL to download the Flash video in this example is:

    http://www.youtube.com/get_video.php?video_id=DYW50F42ss8&t=vjVQa1PpcFPDxa83Hr1_9pftRUWdsMyJ10a2o8QZvIs=

Note that the structure/syntax of the YouTube HTML changes from time to time and thus your software must also be modified when it happens. I have observed such a change 3 times in 13 months (2008-10, 2009-03 and 2009-08).

share|improve this answer
1  
Thanks Peter, this is the only solution that works. Of course if the HTML is changed, this may not work anymore, but apparently there is no other solution. – JMSoft Dec 5 '09 at 16:28
@JMSoft: unfortunately another breakage happend on 2010-07-22. The solution here no longer works. I am working on finding a solution and will update my answer when I find one. In the meantime, see: webapps.stackexchange.com/questions/4651/… – Peter Mortensen Jul 27 '10 at 10:01

Since all the answers here are outdated, I've written a library that is up-to-date:

https://github.com/flagbug/YoutubeExtractor

share|improve this answer

I wrote this C# function and it worked for me:

public static void Download(string videoID, string newFilePath)
{
    WebClient wc = new WebClient();
    string file = wc.DownloadString(string.Format("http://www.youtube.com/watch?v={0}", videoID));
    string t = new Regex("(?<=&t=)[^&]*").Match(file).Value;
    wc.DownloadFile(string.Format("http://www.youtube.com/get_video?t={0}=&video_id={1}",t,videoID), newFilePath);

}

Thanks Peter.

share|improve this answer
2  
hello! nice code but can you tell me if it is still valid ? or the youtube has changes once more since you posted this block of code. i more question what exactly should the "file" variable be equaled with? thanks you in advance! – Chris Karapapas Nov 16 '11 at 18:17

Try the following.

http://code.google.com/apis/youtube/code.html
http://apiblog.youtube.com/2009/03/latest-net-sdk-released-linq-new-social.html

share|improve this answer
3  
Am I missing something? It doesn't look like you can download videos with the API – Swiss Aug 26 '10 at 23:34

Open source, so you can have a look at the code and see how they did it.

http://www.codeproject.com/KB/IP/MyDownloader.aspx

Here is a more succinct example - note, not the actual class:

http://pastebin.com/f396257b6

share|improve this answer

protected by Community Jul 27 '12 at 9:50

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

Not the answer you're looking for? Browse other questions tagged or ask your own question.