<?xml version="1.0"?><?xml-stylesheet type="text/xsl" href="http://www.codeplex.com/rss.xsl"?><rss version="2.0"><channel><title>Video Downloader</title><link>http://videodownloader.codeplex.com/project/feeds/rss</link><description>Video Downloader makes it easier for developers to generate download links for videos from You-Tube as well as getting information on the video itself. You&amp;#39;ll no longer have to search through HTML source code on the You-Tube Website.</description><item><title>Updated Wiki: Home</title><link>http://videodownloader.codeplex.com/wikipage?version=12</link><description>&lt;div class="wikidoc"&gt;
&lt;p&gt;&lt;strong&gt;Project Description&lt;/strong&gt;&lt;br&gt;
Video Downloader makes it easier for developers to generate download links for videos from You-Tube as well as getting information on the video itself. You'll no longer have to search through HTML source code on the You-Tube Website.&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;hr&gt;
&lt;strong&gt;&lt;span style="color:#ff0000"&gt;Abandoned Project - This project has since been abandoned due to time constraints and changes at YouTube.
&lt;/span&gt;&lt;br&gt;
&lt;span style="color:#ff0000"&gt;With each change of YouTube's website this DLL has to be updated to search for the new download link. I am no longer able to constantly provide updates to this project to continue to get download links to work.&lt;/span&gt;&lt;br&gt;
&lt;/strong&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;If you are interested in continuing to use this software visit &lt;a href="http://www.codeproject.com/KB/cs/YouTube_Downloader.aspx"&gt;
http://www.codeproject.com/KB/cs/YouTube_Downloader.aspx&lt;/a&gt; where a guide has been created. Several members have also contributed bug-fixes and changes which might allow the downloading of videos once more.&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;hr&gt;
&lt;strong&gt;This Software is to only be used to download videos that you own the full rights too, and that do not Infringe on copyright laws.&lt;/strong&gt;&lt;br&gt;
&lt;strong&gt;Use of this software is against You-Tube's Terms and Conditions. - Although if you own the video and need to make a backup it may be acceptable.&lt;/strong&gt;&lt;br&gt;
&lt;br&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;Example usage showing what information the DLL can be used to retrieve:&lt;br&gt;
&lt;img title="example usage.jpg" src="http://i3.codeplex.com/Project/Download/FileDownload.aspx?ProjectName=videodownloader&amp;DownloadId=122515" alt="example usage.jpg"&gt;&lt;br&gt;
&lt;br&gt;
Download this small Example Program by clicking below.&lt;br&gt;
&lt;a href="http://www.codeplex.com/Project/Download/FileDownload.aspx?ProjectName=videodownloader&amp;DownloadId=122522"&gt;Example.zip&lt;/a&gt;&lt;br&gt;
&lt;br&gt;
&lt;br&gt;
&lt;strong&gt;How to Use the DLL in your Project:&lt;/strong&gt;&lt;br&gt;
&lt;br&gt;
&lt;strong&gt;Generating Video Download Links.&lt;/strong&gt;&lt;br&gt;
&lt;br&gt;
1. Add a Reference to the DLL in your project.&lt;br&gt;
&lt;br&gt;
&lt;/p&gt;
&lt;div style="color:black; background-color:white"&gt;
&lt;pre&gt;&lt;span style="color:blue"&gt;Public&lt;/span&gt; &lt;span style="color:blue"&gt;Class&lt;/span&gt; Form1
    &lt;span style="color:blue"&gt;Private&lt;/span&gt; downloadmaker &lt;span style="color:blue"&gt;As&lt;/span&gt; &lt;span style="color:blue"&gt;New&lt;/span&gt; Video_Downloader_DLL.VideoDownloader
    &lt;span style="color:blue"&gt;Private&lt;/span&gt; &lt;span style="color:blue"&gt;Sub&lt;/span&gt; Form1_Load(&lt;span style="color:blue"&gt;ByVal&lt;/span&gt; sender &lt;span style="color:blue"&gt;As&lt;/span&gt; System.Object, &lt;span style="color:blue"&gt;ByVal&lt;/span&gt; e &lt;span style="color:blue"&gt;As&lt;/span&gt; System.EventArgs) &lt;span style="color:blue"&gt;Handles&lt;/span&gt; &lt;span style="color:blue"&gt;MyBase&lt;/span&gt;.Load
        &lt;span style="color:blue"&gt;Dim&lt;/span&gt; output &lt;span style="color:blue"&gt;As&lt;/span&gt; &lt;span style="color:blue"&gt;String&lt;/span&gt; = &lt;span style="color:#a31515"&gt;&amp;quot;&amp;quot;&lt;/span&gt;
        downloadmaker.MakeDownloadURL(&lt;span style="color:#a31515"&gt;&amp;quot;http://www.youtube.com/watch?v=hwQdGY6JuDY&amp;quot;&lt;/span&gt;, output)
        MsgBox(output)
    &lt;span style="color:blue"&gt;End&lt;/span&gt; &lt;span style="color:blue"&gt;Sub&lt;/span&gt;
&lt;span style="color:blue"&gt;End&lt;/span&gt; &lt;span style="color:blue"&gt;Class&lt;/span&gt;
&lt;/pre&gt;
&lt;/div&gt;
&lt;p&gt;*Where output is the generated download URL for that particular You-Tube Video.&lt;br&gt;
&lt;br&gt;
&lt;strong&gt;Getting the You-Tube Videos Video Title&lt;/strong&gt;&lt;br&gt;
&lt;br&gt;
1. Add a Reference to the DLL in your project.&lt;br&gt;
&lt;br&gt;
&lt;/p&gt;
&lt;div style="color:black; background-color:white"&gt;
&lt;pre&gt;&lt;span style="color:blue"&gt;Public&lt;/span&gt; &lt;span style="color:blue"&gt;Class&lt;/span&gt; Form1
    &lt;span style="color:blue"&gt;Private&lt;/span&gt; downloadmaker &lt;span style="color:blue"&gt;As&lt;/span&gt; &lt;span style="color:blue"&gt;New&lt;/span&gt; Video_Downloader_DLL.VideoDownloader
    &lt;span style="color:blue"&gt;Private&lt;/span&gt; &lt;span style="color:blue"&gt;Sub&lt;/span&gt; Form1_Load(&lt;span style="color:blue"&gt;ByVal&lt;/span&gt; sender &lt;span style="color:blue"&gt;As&lt;/span&gt; System.Object, &lt;span style="color:blue"&gt;ByVal&lt;/span&gt; e &lt;span style="color:blue"&gt;As&lt;/span&gt; System.EventArgs) &lt;span style="color:blue"&gt;Handles&lt;/span&gt; &lt;span style="color:blue"&gt;MyBase&lt;/span&gt;.Load
        &lt;span style="color:blue"&gt;Dim&lt;/span&gt; videotitle &lt;span style="color:blue"&gt;As&lt;/span&gt; &lt;span style="color:blue"&gt;String&lt;/span&gt; = &lt;span style="color:#a31515"&gt;&amp;quot;&amp;quot;&lt;/span&gt;
        downloadmaker.GetVideoTitle(&lt;span style="color:#a31515"&gt;&amp;quot;http://www.youtube.com/watch?v=hwQdGY6JuDY&amp;quot;&lt;/span&gt;, videotitle)
    &lt;span style="color:blue"&gt;End&lt;/span&gt; &lt;span style="color:blue"&gt;Sub&lt;/span&gt;
&lt;span style="color:blue"&gt;End&lt;/span&gt; &lt;span style="color:blue"&gt;Class&lt;/span&gt;
&lt;/pre&gt;
&lt;/div&gt;
&lt;p&gt;*Where videotitle is the Video Title for that particular You-Tube Video.&lt;br&gt;
&lt;br&gt;
&lt;strong&gt;Generating Video Thumbnail URLs.&lt;/strong&gt;&lt;br&gt;
&lt;br&gt;
1. Add a Reference to the DLL in your project.&lt;br&gt;
&lt;br&gt;
&lt;/p&gt;
&lt;div style="color:black; background-color:white"&gt;
&lt;pre&gt;&lt;span style="color:blue"&gt;Public&lt;/span&gt; &lt;span style="color:blue"&gt;Class&lt;/span&gt; Form1
    &lt;span style="color:blue"&gt;Private&lt;/span&gt; downloadmaker &lt;span style="color:blue"&gt;As&lt;/span&gt; &lt;span style="color:blue"&gt;New&lt;/span&gt; Video_Downloader_DLL.VideoDownloader
    &lt;span style="color:blue"&gt;Private&lt;/span&gt; &lt;span style="color:blue"&gt;Sub&lt;/span&gt; Form1_Load(&lt;span style="color:blue"&gt;ByVal&lt;/span&gt; sender &lt;span style="color:blue"&gt;As&lt;/span&gt; System.Object, &lt;span style="color:blue"&gt;ByVal&lt;/span&gt; e &lt;span style="color:blue"&gt;As&lt;/span&gt; System.EventArgs) &lt;span style="color:blue"&gt;Handles&lt;/span&gt; &lt;span style="color:blue"&gt;MyBase&lt;/span&gt;.Load
        &lt;span style="color:blue"&gt;Dim&lt;/span&gt; thumbnailurl &lt;span style="color:blue"&gt;As&lt;/span&gt; &lt;span style="color:blue"&gt;String&lt;/span&gt; = &lt;span style="color:#a31515"&gt;&amp;quot;&amp;quot;&lt;/span&gt;
        downloadmaker.GetPreviewThumbnail(&lt;span style="color:#a31515"&gt;&amp;quot;http://www.youtube.com/watch?v=hwQdGY6JuDY&amp;quot;&lt;/span&gt;, thumbnailurl)
    &lt;span style="color:blue"&gt;End&lt;/span&gt; &lt;span style="color:blue"&gt;Sub&lt;/span&gt;
&lt;span style="color:blue"&gt;End&lt;/span&gt; &lt;span style="color:blue"&gt;Class&lt;/span&gt;
&lt;/pre&gt;
&lt;/div&gt;
&lt;p&gt;*Where thumbnailurl is the generated URL for that particular You-Tube Video Thumbnail for that video.&lt;/p&gt;
&lt;/div&gt;&lt;div class="ClearBoth"&gt;&lt;/div&gt;</description><author>djpip27</author><pubDate>Sun, 21 Aug 2011 10:27:10 GMT</pubDate><guid isPermaLink="false">Updated Wiki: Home 20110821102710A</guid></item><item><title>New Post: Still working for anyone?</title><link>http://videodownloader.codeplex.com/discussions/248490</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;This link is 2 years old but may explain some of the antics at youTube: http://hothardware.com/News/YouTube-Begins-to-Kill-Off-Video-Download-Tools/&lt;/p&gt;
&lt;p&gt;Until things are fixed: This works, is free, and has been updated! Tested today! http://www.wondershare.com/pro/free-youtube-downloader.html&lt;/p&gt;&lt;/div&gt;</description><author>studleylee</author><pubDate>Mon, 28 Mar 2011 19:47:01 GMT</pubDate><guid isPermaLink="false">New Post: Still working for anyone? 20110328074701P</guid></item><item><title>New Post: Still working for anyone?</title><link>http://videodownloader.codeplex.com/discussions/248490</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;I downloaded this about 3 days ago.&lt;/p&gt;
&lt;p&gt;I also modified the .dll so it would work again, but now after 2 days its stopped working again :(&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Does anybody have a fix ? :)&lt;/p&gt;&lt;/div&gt;</description><author>jjmpsp</author><pubDate>Mon, 28 Mar 2011 15:56:02 GMT</pubDate><guid isPermaLink="false">New Post: Still working for anyone? 20110328035602P</guid></item><item><title>New Post: Still working for anyone?</title><link>http://videodownloader.codeplex.com/discussions/248490</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;I agree, I made the recent changes and it worked, but today&amp;nbsp; it's broken again.&lt;/p&gt;&lt;/div&gt;</description><author>studleylee</author><pubDate>Sun, 27 Mar 2011 21:20:22 GMT</pubDate><guid isPermaLink="false">New Post: Still working for anyone? 20110327092022P</guid></item><item><title>New Post: Still working for anyone?</title><link>http://videodownloader.codeplex.com/discussions/248490</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;Yeah, google made changes again. Its worked for awhile after changing that line of code and then a few days ago google changed the url sheme again.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Hopefully the author can find the time to update the library. I'm not sure about the changes google made to be able to fix any of the code myself.&lt;/p&gt;&lt;/div&gt;</description><author>formulav8</author><pubDate>Sat, 26 Mar 2011 16:13:41 GMT</pubDate><guid isPermaLink="false">New Post: Still working for anyone? 20110326041341P</guid></item><item><title>New Post: Still working for anyone?</title><link>http://videodownloader.codeplex.com/discussions/248490</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;looks like it is not working even after new line of code. Any chance of update?&lt;/p&gt;
&lt;p&gt;Thanks&lt;/p&gt;&lt;/div&gt;</description><author>akshayaPranav</author><pubDate>Sat, 26 Mar 2011 12:41:04 GMT</pubDate><guid isPermaLink="false">New Post: Still working for anyone? 20110326124104P</guid></item><item><title>New Post: Still working for anyone?</title><link>http://videodownloader.codeplex.com/discussions/248490</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;Thankyou VERY much. That actually fixed it. I guess Youtube changed some minor setting or something...&lt;/p&gt;
&lt;p&gt;Hard to believe it just needed a single line of code. Thanks again! :)&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Jason&lt;/p&gt;&lt;/div&gt;</description><author>formulav8</author><pubDate>Tue, 08 Mar 2011 16:58:41 GMT</pubDate><guid isPermaLink="false">New Post: Still working for anyone? 20110308045841P</guid></item><item><title>New Post: Still working for anyone?</title><link>http://videodownloader.codeplex.com/discussions/248490</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;Here is the fix:&lt;/p&gt;
&lt;p&gt;1) Place the following line of code under this line:&lt;/p&gt;
&lt;p&gt;signature = signature.Replace("%2C", ",")&amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;signature = signature.Replace("\", "") &amp;lt;---- new line of code&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;It should work, you will have to recompile the .dll file though.&lt;/p&gt;&lt;/div&gt;</description><author>gintechsystems</author><pubDate>Tue, 08 Mar 2011 13:03:16 GMT</pubDate><guid isPermaLink="false">New Post: Still working for anyone? 20110308010316P</guid></item><item><title>New Post: Still working for anyone?</title><link>http://videodownloader.codeplex.com/discussions/248490</link><description>&lt;div style="line-height: normal;"&gt;
&lt;p&gt;I know this is a old library and no one may read this message, but just in case&amp;nbsp;I am wondering if you get an error message: &amp;quot;Index was outside the bounds of the array.&amp;quot; when trying to call the &amp;quot;MakeDownloadURL&amp;quot; sub.&lt;/p&gt;
&lt;p&gt;If you have a fix or know of a library that still works with youtube, please let everyone know. :)&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; Jason&lt;/p&gt;
&lt;/div&gt;</description><author>formulav8</author><pubDate>Fri, 04 Mar 2011 20:29:43 GMT</pubDate><guid isPermaLink="false">New Post: Still working for anyone? 20110304082943P</guid></item><item><title>Created Issue: Not working anymore [6290]</title><link>http://videodownloader.codeplex.com/workitem/6290</link><description>I&amp;#39;m not sure if your still interested in updating your video downloader library, but it no longer works correctly. Whenever you try to call the &amp;#34;MakeDownloadURL&amp;#34; sub, it will throw an error message&amp;#58;  &amp;#34;Index was outside the bounds of the array.&amp;#34;&lt;br /&gt;&lt;br /&gt;Would be great if you could find the time to update it. Thanks&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;     Jason&lt;br /&gt;</description><author>formulav8</author><pubDate>Fri, 04 Mar 2011 20:26:38 GMT</pubDate><guid isPermaLink="false">Created Issue: Not working anymore [6290] 20110304082638P</guid></item><item><title>Source code checked in, #49966</title><link>http://videodownloader.codeplex.com/SourceControl/changeset/changes/49966</link><description>Checked in by server upgrade</description><author>_TFSSERVICE</author><pubDate>Mon, 19 Jul 2010 20:19:27 GMT</pubDate><guid isPermaLink="false">Source code checked in, #49966 20100719081927P</guid></item><item><title>Closed Issue: Generate Download URL can throw messages up call stack. [4969]</title><link>http://videodownloader.codeplex.com/workitem/4969</link><description>Generate Download URL can throw messages up call stack. Try,Catch Blocks need to be added.&lt;br /&gt;</description><author>djpip27</author><pubDate>Mon, 28 Jun 2010 19:46:59 GMT</pubDate><guid isPermaLink="false">Closed Issue: Generate Download URL can throw messages up call stack. [4969] 20100628074659P</guid></item><item><title>Source code checked in, #48582</title><link>http://videodownloader.codeplex.com/SourceControl/changeset/changes/48582</link><description></description><author>djpip27</author><pubDate>Mon, 28 Jun 2010 19:46:57 GMT</pubDate><guid isPermaLink="false">Source code checked in, #48582 20100628074657P</guid></item><item><title>Source code checked in, #48581</title><link>http://videodownloader.codeplex.com/SourceControl/changeset/changes/48581</link><description></description><author>djpip27</author><pubDate>Mon, 28 Jun 2010 19:44:38 GMT</pubDate><guid isPermaLink="false">Source code checked in, #48581 20100628074438P</guid></item><item><title>Closed Issue: Video Title is now obsolete. [4968]</title><link>http://videodownloader.codeplex.com/workitem/4968</link><description>Video Title is now obsolete. &lt;br /&gt;Users should be directed to use official API instead.&lt;br /&gt;http&amp;#58;&amp;#47;&amp;#47;code.google.com&amp;#47;apis&amp;#47;youtube&amp;#47;2.0&amp;#47;developers_guide_dotnet.html&lt;br /&gt;</description><author>djpip27</author><pubDate>Mon, 28 Jun 2010 19:41:26 GMT</pubDate><guid isPermaLink="false">Closed Issue: Video Title is now obsolete. [4968] 20100628074126P</guid></item><item><title>Closed Issue: Video Thumbnail is now obsolete. [4967]</title><link>http://videodownloader.codeplex.com/workitem/4967</link><description>Video Thumbnail is now obsolete.&lt;br /&gt;Users should be directed to use official API instead.&lt;br /&gt;http&amp;#58;&amp;#47;&amp;#47;code.google.com&amp;#47;apis&amp;#47;youtube&amp;#47;2.0&amp;#47;developers_guide_dotnet.html&lt;br /&gt;</description><author>djpip27</author><pubDate>Mon, 28 Jun 2010 19:41:26 GMT</pubDate><guid isPermaLink="false">Closed Issue: Video Thumbnail is now obsolete. [4967] 20100628074126P</guid></item><item><title>Source code checked in, #48578</title><link>http://videodownloader.codeplex.com/SourceControl/changeset/changes/48578</link><description></description><author>djpip27</author><pubDate>Mon, 28 Jun 2010 19:41:24 GMT</pubDate><guid isPermaLink="false">Source code checked in, #48578 20100628074124P</guid></item><item><title>Created Issue: Add Viddler Download Support. [4971]</title><link>http://videodownloader.codeplex.com/workitem/4971</link><description>Add Viddler Download Support.&lt;br /&gt;</description><author>djpip27</author><pubDate>Mon, 28 Jun 2010 19:26:54 GMT</pubDate><guid isPermaLink="false">Created Issue: Add Viddler Download Support. [4971] 20100628072654P</guid></item><item><title>Created Issue: Add support for Facebook Video Download Link Creation. [4970]</title><link>http://videodownloader.codeplex.com/workitem/4970</link><description>Add support for Facebook Video Download Link Creation.&lt;br /&gt;This can be done by repeating the You-Tube code and adapting as needed.&lt;br /&gt;</description><author>djpip27</author><pubDate>Mon, 28 Jun 2010 19:26:14 GMT</pubDate><guid isPermaLink="false">Created Issue: Add support for Facebook Video Download Link Creation. [4970] 20100628072614P</guid></item><item><title>Created Issue: Generate Download URL can throw messages up call stack. [4969]</title><link>http://videodownloader.codeplex.com/workitem/4969</link><description>Generate Download URL can throw messages up call stack. Try,Catch Blocks need to be added.&lt;br /&gt;</description><author>djpip27</author><pubDate>Mon, 28 Jun 2010 19:25:02 GMT</pubDate><guid isPermaLink="false">Created Issue: Generate Download URL can throw messages up call stack. [4969] 20100628072502P</guid></item></channel></rss>
