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

I wish to download a video from YouTube and then extract its audio.

Can anyone point me to some C# code to download a video?

For clarification purposes, I already know how to extract audio from a .FLV file like these.

share|improve this question
I already know how to extract the audio tho. – Maxim Zaslavsky Jul 4 '09 at 23:31

5 Answers

up vote 8 down vote accepted

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

http://github.com/flagbug/YoutubeExtractor

share|improve this answer
Thanks for posting this. – Maxim Zaslavsky Jan 27 at 0:32
this class is good, but I have a big problem. I have implemented this class in my windows form application and when I try to download video from YouTube, all application freezes! I dont know how resolve this issue... – vincenzolopalo Feb 8 at 0:45
Works out of the box, thanks :) – Lasse Christiansen - sw_lasse Apr 5 at 19:02

I referred to these links once. I hope they help.

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

http://pastebin.com/f396257b6

The code put up in the first link seems more generic as it supports download of both youtube and google videos.

cheers

share|improve this answer
Im looking at the first link - it's very cool! I'm going to try that and will report back! – Maxim Zaslavsky Jul 4 '09 at 23:42
pastebin: Unknown paste ID, it may have expired or been deleted! – Mark Sep 15 '10 at 8:35
The codeproject article is MIA on Jun 19 '11. It is currently in the Wayback Machine at web.archive.org/web/20090228195119/http://www.codeproject.com/… – Jerry Jun 14 '11 at 1:01

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

share|improve this answer
Will try... Thanks! – Maxim Zaslavsky Jul 4 '09 at 23:40

To all interested:

The "Coding for fun" book's chapter 4 "InnerTube: Download, Convert, and Sync YouTube Videos" deals with the topic. The code and discussion are at http://www.c4fbook.com/InnerTube.

[PLEASE BEWARE] While the overall concepts are valid some years after the publication, non-documented details of the youtube internals the project relies on can have changed (see the comment at the bottom of the page behind the second link).

share|improve this answer

protected by ho1 May 23 '11 at 8:37

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.