YouTube to MP3 Converter | Tutorial |

Heres your chance to share your own tutorials with the community. Just post them on here. If your lucky they may even be posted on the main site.
7 posts Page 1 of 1
Contributors
User avatar
3aaBrSbeel
Top Poster
Top Poster
Posts: 139
Joined: Fri Jun 01, 2012 9:34 am

Hello!

In this post. I will teach you how to make your own YouTube to MP3 Converter.

Ok, You will need these..

1 Web Browser (Visible - False)
1 Textbox
2 Buttons


Make it look like this..
YT MP3 C.png
I would like to Thank, #mandai for helping me with this cooll;

Ok, Let's continue...

In Form1_Load. Add this Code..
Code: Select all
 WebBrowser1.Navigate("http://www.youtube-mp3.org/")
        Button1.Enabled = False
In WebBrowser. Add this Code..
Code: Select all
Dim text As String = WebBrowser1.DocumentText
       
        If text.Contains("submit-form") Then
            Button1.Enabled = True
        Else
            Button1.Enabled = False
            MsgBox("Could not connect to the internet!", MsgBoxStyle.Information, "Error")
        End If
In Button1. Add this..
Code: Select all
WebBrowser1.Document.GetElementById("youtube-url").SetAttribute("value", TextBox1.Text)
        WebBrowser1.Document.GetElementById("submit").InvokeMember("click")
In Button 2. Add this..
Code: Select all
Dim dl_link As HtmlElement = WebBrowser1.Document.GetElementById("dl_link")

        Dim links As HtmlElementCollection = dl_link.GetElementsByTagName("a")

        Dim url As String = links(0).GetAttribute("href")
        System.Diagnostics.Process.Start(url)
HOPE THIS HELPS! oHH YEAH.. You need Internet for this.. goofy;
You do not have the required permissions to view the files attached to this post.
Last edited by 3aaBrSbeel on Mon Aug 20, 2012 7:50 am, edited 2 times in total.
User avatar
Shim
VIP - Donator
VIP - Donator
Posts: 882
Joined: Wed Dec 14, 2011 5:02 am

Re: YouTube to MP3 Converter
Shim
nice tutorial "short and sweet" :D
Find my programs on Softpedia
User avatar
3aaBrSbeel
Top Poster
Top Poster
Posts: 139
Joined: Fri Jun 01, 2012 9:34 am

Re: YouTube to MP3 Converter
3aaBrSbeel
mshimranpro wrote:
nice tutorial "short and sweet" :D
Thanks. Couldn't done this without a help from #mandai clapper;
Code'n'Stuff Signature Of 3aaBrSbeel
®║▌│█│║▌║││█║▌║▌║▌
✔ Verified Official Code'n'Stuff account ᵀᴴᴱ ᴼᴿᴵᴳᴵᴻᴬᴸ
Image
User avatar
AnoPem
VIP - Donator
VIP - Donator
Posts: 441
Joined: Sat Jul 24, 2010 10:55 pm

Re: YouTube to MP3 Converter
AnoPem
I agree with #mshimranpro really good tut
https://t.me/pump_upp
User avatar
3aaBrSbeel
Top Poster
Top Poster
Posts: 139
Joined: Fri Jun 01, 2012 9:34 am

Re: YouTube to MP3 Converter
3aaBrSbeel
Thanks #AnoPem blusho;
Code'n'Stuff Signature Of 3aaBrSbeel
®║▌│█│║▌║││█║▌║▌║▌
✔ Verified Official Code'n'Stuff account ᵀᴴᴱ ᴼᴿᴵᴳᴵᴻᴬᴸ
Image
User avatar
Bloodz_Ninja
Dedicated Member
Dedicated Member
Posts: 69
Joined: Sat Aug 25, 2012 3:20 am

nice tut, but where and what do i do with button 2, or the one that isnt visible on the image?? idoit;
User avatar
AnoPem
VIP - Donator
VIP - Donator
Posts: 441
Joined: Sat Jul 24, 2010 10:55 pm

Bloodz_Ninja wrote:
nice tut, but where and what do i do with button 2, or the one that isnt visible on the image?? idoit;

Button2 should be visible its the button you press to download the file, and button1 you convert the file to mp3
https://t.me/pump_upp
7 posts Page 1 of 1
Return to “Tutorials”