Introduction
Hello! In this post, I'll show you my small new project. With this software, you can download Youtube videos as mp3 files. It works with http://www.youtube-mp3.org where program sends commands that convert video and sends download link of mp3 file to the program.
Using the Code
To convert a video, you must do the following three steps:
- Submit a link of the video you want to convert.
- Send command to www.youtube-mp3.org and get the download link of mp3 file.
- Download mp3 file.
Now see that in code!
TextBox1 is textbox for video URL. Button2 is convert button. This code checks video URL. Place this code on Button1_Click event. Button1 is submit or check button.
If TextBox1.Text.StartsWith("http://www.youtube.com/watch?v=") Then
Button2.Enabled = True
Else
Button2.Enabled = False
End If
- This code sends video URL and convert command.
Button3 is download button. Place this code on Button2_Click event.
WebBrowser1.Document.GetElementById("youtube-url").SetAttribute("value", TextBox1.Text)
WebBrowser1.Document.GetElementById("submit").InvokeMember("click")
Button3.Enabled = True
- This code starts downloading the mp3 file. Place this code on
Button3_Click event.
Dim download_link As HtmlElement = WebBrowser1.Document.GetElementById("dl_link")
Dim links As HtmlElementCollection = download_link.GetElementsByTagName("a")
Dim link As String = links(0).GetAttribute("href")
System.Diagnostics.Process.Start(link)
- This code navigates web browser to the webpage where converting starts. Put it on
Form1_Load event.
WebBrowser1.Navigate("http://www.youtube-mp3.org/")
In this project, you need TextBox1, Button1, Button2, Button3, WebBrowser1.
Download
The source isn't available, but you can download the application here.
The software is available only in Serbian language!
Hello! My name is Dušan Lazić and I am coming from Serbia. I am 13 years old. I made my first software when I was 10. These 3 years I didn't progress to much so I stayed on VB.NET a long time. Only what I learned is just some basics from C#. Now, as 13 years old, I come to CodeProject to show people my work, and advance my programming skills and knowledge.