Support Forums
Youtube Downloader - Printable Version

+- Support Forums (https://www.supportforums.net)
+-- Forum: Categories (https://www.supportforums.net/forumdisplay.php?fid=87)
+--- Forum: Coding Support Forums (https://www.supportforums.net/forumdisplay.php?fid=18)
+---- Forum: Visual Basic and the .NET Framework (https://www.supportforums.net/forumdisplay.php?fid=19)
+---- Thread: Youtube Downloader (/showthread.php?tid=144)

Pages: 1 2 3 4


RE: Youtube Downloader - GizSho - 10-05-2009

(10-05-2009, 03:13 PM)St0rmW1nd Wrote: I could have sworn I saw the same program by the a different author on Hack Forums... same buttons too.

Yes, it was by another member there, but sp4wn helped him with it, so most of the credits go to Sp4wn.


RE: Youtube Downloader - Skawke - 10-05-2009

(10-05-2009, 03:45 PM)PaNiK Wrote: I used an online service for this, but it didn't get the audio quite right.
Does this have audio+video?

It should.


RE: Youtube Downloader - macdonjo - 10-05-2009

Nice, but there are sites that do this. Tongue Just saying...


RE: Youtube Downloader - Sp4wn - 10-05-2009

Yeah. Firefox also has a addon.


RE: Youtube Downloader - Nyx- - 10-05-2009

are you going to post the source? that would be pretty cool for people learning to understand exactly how it works, your giving it out for free anyways, but your choice overall


RE: Youtube Downloader - GizSho - 10-06-2009

(10-05-2009, 11:13 PM)Nyx- Wrote: are you going to post the source? that would be pretty cool for people learning to understand exactly how it works, your giving it out for free anyways, but your choice overall

Source is already posted (I think) If not it's posted on HF


RE: Youtube Downloader - Sp4wn - 10-06-2009

Code:
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
WebBrowser1.Navigate("http://www.youtube.com/watch?v=" + TextBox1.Text)
End Sub

Private Sub WebBrowser1_DocumentCompleted(ByVal sender As System.Object, ByVal e As System.Windows.Forms.WebBrowserDocumentCompletedEventArgs) Handles WebBrowser1.DocumentCompleted
Button2.Enabled = True
End Sub

Private Sub Button2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button2.Click
WebBrowser1.Navigate("javascript:swfArgs['t']")
Button3.Enabled = True
Button2.Enabled = False
End Sub

Private Sub Button3_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button3.Click
WebBrowser1.Navigate("http://www.youtube.com/get_video?video_id=" + TextBox1.Text + "&t" + "=" + WebBrowser1.DocumentText)
End Sub

Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load

End Sub

Private Sub Button4_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button4.Click
MessageBox.Show("How To Use? Well, The Video ID Is this part. http://www.youtube.com/watch?v=oSQJP40PcGI, oSQJP40PcGI Is the part. Then put that in, Click Go. Then it will show the video In the big empty Space. Then you can scan And download.", "About: By Sp4wn")
End Sub
End Class

Dont have full source cause Online Armor screwed computer


RE: Youtube Downloader - ♱ RedTube ♱ - 10-06-2009

Very nice. Can you download the videos to .WMV? In music format.

If you can't, here's a site that can do it ;)




RE: Youtube Downloader - Common - 10-06-2009

This Firefox add-on (Video Download Helper) is the best one for this imo.

https://addons.mozilla.org/en-US/firefox/addon/3006


RE: Youtube Downloader - ♱ RedTube ♱ - 10-06-2009

(10-06-2009, 12:21 PM)| .At0m. | Wrote: This Firefox add-on (Video Download Helper) is the best one for this imo.

https://addons.mozilla.org/en-US/firefox/addon/3006
I use that. Can you change the format that the video downloads in?