Page 1 of 2 12 LastLast
Results 1 to 15 of 19
  1. #1
    Shadow`'s Avatar
    Join Date
    Nov 2011
    Gender
    male
    Location
    MN
    Posts
    636
    Reputation
    74
    Thanks
    3,014
    My Mood
    Relaxed

    Shadow's Youtube MP3 Ripper [v1.0]

    So this is the Youtube MP3 Ripper I made. This is great if you get your music from youtube or just like to listen to music on it.

    Screenshots:


    VS:
    https://www.virustotal.com/file/b6f6...is/1337556705/

    Shadow's Youtube MP3 Ripper.rar - Jotti's malware scan

    Credits:

    Shadow
    Gr0wlit
    Serge
    <b>Downloadable Files</b> Downloadable Files

  2. The Following 3 Users Say Thank You to Shadow` For This Useful Post:

    'Quarentine (09-07-2012),fahadvip (09-15-2015),Paul (06-19-2012)

  3. #2
    Shadow`'s Avatar
    Join Date
    Nov 2011
    Gender
    male
    Location
    MN
    Posts
    636
    Reputation
    74
    Thanks
    3,014
    My Mood
    Relaxed
    Quote Originally Posted by Bela B View Post
    Looks nice, but hwere does it save the files? Can you choose the path?
    Lol, what use would a mp3 ripper be if you couldn't save the files. Of course it does.

  4. #3
    Ravallo's Avatar
    Join Date
    Jun 2008
    Gender
    male
    Location
    The Netherlands
    Posts
    17,093
    Reputation
    2134
    Thanks
    5,750
    My Mood
    Angelic
    Works like a charm, very fast aswell

    /Approved


     

    MSN: woutervvelsen@live.nl
    Timezone: GMT +1



    Middleman since: April 13th, 2011
    Marketplace minion since: April 18th, 2011
    Runescape minion since: June 6th, 2011
    Moderator since: September 28th, 2011
    General Moderator since: November 2nd, 2011
    Global Moderator since: April 29th, 2012
    Super User since: November 1st, 2013

  5. The Following User Says Thank You to Ravallo For This Useful Post:

    Hassan (05-21-2012)

  6. #4
    Cryptonic's Avatar
    Join Date
    Apr 2010
    Gender
    male
    Location
    United Provinces of Canada
    Posts
    1,313
    Reputation
    44
    Thanks
    190
    My Mood
    Bored
    I assume you used YouTube to mp3 Converter for this?

  7. #5
    Shadow`'s Avatar
    Join Date
    Nov 2011
    Gender
    male
    Location
    MN
    Posts
    636
    Reputation
    74
    Thanks
    3,014
    My Mood
    Relaxed
    Quote Originally Posted by PepsiXHacker View Post
    I assume you used YouTube to mp3 Converter for this?
    It implements a converter website, and also has a bunch of fail safes. If you're asking if it parses the link itself, then no, but that's much more complicated than it needs to be.

  8. #6
    Jason's Avatar
    Join Date
    Apr 2010
    Gender
    male
    Location
    /dev/null
    Posts
    5,704
    Reputation
    918
    Thanks
    7,676
    My Mood
    Mellow
    Did you use a WebBrowser or man up and reverse their internal API?

    Quote Originally Posted by Jeremy S. Anderson
    There are only two things to come out of Berkley, Unix and LSD,
    and I don’t think this is a coincidence
    You can win the rat race,
    But you're still nothing but a fucking RAT.


    ++Latest Projects++
    [Open Source] Injection Library
    Simple PE Cipher
    FilthyHooker - Simple Hooking Class
    CLR Injector - Inject .NET dlls with ease
    Simple Injection - An in-depth look
    MPGH's .NET SDK
    eJect - Simple Injector
    Basic PE Explorer (BETA)

  9. The Following User Says Thank You to Jason For This Useful Post:

    Hassan (05-26-2012)

  10. #7
    You have enemies? Good, that means you stood up for something.
    MPGH Member
    scotbud123's Avatar
    Join Date
    Apr 2012
    Gender
    male
    Location
    Azeroth
    Posts
    2,851
    Reputation
    99
    Thanks
    220
    My Mood
    Amused
    Already have Free YouTube to MP3 Converter but still, pretty nice.








     



















  11. #8
    Hassan's Avatar
    Join Date
    May 2010
    Gender
    male
    Location
    System.Threading.Tasks
    Posts
    4,764
    Reputation
    495
    Thanks
    2,133
    My Mood
    Dead
    Quote Originally Posted by Jason View Post
    Did you use a WebBrowser or man up and reverse their internal API?
    Code:
    string Data = new System.Net.WebClient().DownloadString("https://www.youtube-mp3.org/api/itemInfo/?video_id=" + TxtUrl.Text.Split('=')[1] + "&ac=www");
    if (!(string.IsNullOrEmpty(Data.Trim())))
    {
    string H = Regex.Match(Data, @"(?<=""h""\s:\s"").*?(?="")").Value;
    string URL = "https://www.youtube-mp3.org/get?video_id=" + TxtUrl.Text.Split('=')[1] + "&h=" + H;
    System.Diagnostics.Process.Start(URL);
    }
    Nothing to reverse I guess !

  12. #9
    Jason's Avatar
    Join Date
    Apr 2010
    Gender
    male
    Location
    /dev/null
    Posts
    5,704
    Reputation
    918
    Thanks
    7,676
    My Mood
    Mellow
    Quote Originally Posted by Hassan View Post


    Code:
    string Data = new System.Net.WebClient().DownloadString("https://www.youtube-mp3.org/api/itemInfo/?video_id=" + TxtUrl.Text.Split('=')[1] + "&ac=www");
    if (!(string.IsNullOrEmpty(Data.Trim())))
    {
    string H = Regex.Match(Data, @"(?<=""h""\s:\s"").*?(?="")").Value;
    string URL = "https://www.youtube-mp3.org/get?video_id=" + TxtUrl.Text.Split('=')[1] + "&h=" + H;
    System.Diagnostics.Process.Start(URL);
    }
    Nothing to reverse I guess !
    Yeah, no. Hahaha. I mean reversing it to the extent that you can do:

    Code:
    YoutubeMp3 converter = new YoutubeMp3("youtubeurl");
    converter.Download("C:\\music.mp3");

    Quote Originally Posted by Jeremy S. Anderson
    There are only two things to come out of Berkley, Unix and LSD,
    and I don’t think this is a coincidence
    You can win the rat race,
    But you're still nothing but a fucking RAT.


    ++Latest Projects++
    [Open Source] Injection Library
    Simple PE Cipher
    FilthyHooker - Simple Hooking Class
    CLR Injector - Inject .NET dlls with ease
    Simple Injection - An in-depth look
    MPGH's .NET SDK
    eJect - Simple Injector
    Basic PE Explorer (BETA)

  13. #10
    Hassan's Avatar
    Join Date
    May 2010
    Gender
    male
    Location
    System.Threading.Tasks
    Posts
    4,764
    Reputation
    495
    Thanks
    2,133
    My Mood
    Dead
    Quote Originally Posted by Jason View Post


    Yeah, no. Hahaha. I mean reversing it to the extent that you can do:

    Code:
    YoutubeMp3 converter = new YoutubeMp3("youtubeurl");
    converter.Download("C:\\music.mp3");
    I see.

  14. #11
    Shadow`'s Avatar
    Join Date
    Nov 2011
    Gender
    male
    Location
    MN
    Posts
    636
    Reputation
    74
    Thanks
    3,014
    My Mood
    Relaxed
    Quote Originally Posted by Jason View Post
    Did you use a WebBrowser or man up and reverse their internal API?
    A web-browser :3

  15. #12
    TheGoldenShroud's Avatar
    Join Date
    Dec 2011
    Gender
    male
    Posts
    14
    Reputation
    10
    Thanks
    0
    What conversion website did you use?
    Last edited by TheGoldenShroud; 06-10-2012 at 04:56 PM.

  16. #13
    dudezone2's Avatar
    Join Date
    Aug 2010
    Gender
    male
    Posts
    86
    Reputation
    10
    Thanks
    2
    My Mood
    Relaxed
    Hey, when i see someone post a release, i usually try to make the same program myself to learn VB more. I made most of it, but how did you make it get the link from the Download button? Thanks.
    I don't really have a signature... well... you don't have a life! TM...well its not really a trademark, but don't take it

  17. #14
    Jason's Avatar
    Join Date
    Apr 2010
    Gender
    male
    Location
    /dev/null
    Posts
    5,704
    Reputation
    918
    Thanks
    7,676
    My Mood
    Mellow
    Here's the one I wrote in C# which doesn't rely on a WebBrowser.

    Private Paste - Pastie

    Essentially all you need is a youtube url. Then call it in the following manner:

    Code:
    YouTubeMp3 mp3 = new YouTubeMp3("https://www.youtube.com/watch?v=-fhj30f3aJ0", "", "");
    if (mp3.PushItem() && mp3.WaitForLink())
    {
        using(var tempClient = new WebClient())
            tempClient.DownloadFile(mp3.DownloadLink, "C:\example.mp3");
    }

    Quote Originally Posted by Jeremy S. Anderson
    There are only two things to come out of Berkley, Unix and LSD,
    and I don’t think this is a coincidence
    You can win the rat race,
    But you're still nothing but a fucking RAT.


    ++Latest Projects++
    [Open Source] Injection Library
    Simple PE Cipher
    FilthyHooker - Simple Hooking Class
    CLR Injector - Inject .NET dlls with ease
    Simple Injection - An in-depth look
    MPGH's .NET SDK
    eJect - Simple Injector
    Basic PE Explorer (BETA)

  18. The Following User Says Thank You to Jason For This Useful Post:

    Shadow` (06-13-2012)

  19. #15
    dudezone2's Avatar
    Join Date
    Aug 2010
    Gender
    male
    Posts
    86
    Reputation
    10
    Thanks
    2
    My Mood
    Relaxed
    Do you know how to he got the download link from the button tho
    I don't really have a signature... well... you don't have a life! TM...well its not really a trademark, but don't take it

Page 1 of 2 12 LastLast

Similar Threads

  1. [Release] YouTube MP3 Downloader
    By apezwijn in forum General
    Replies: 12
    Last Post: 11-30-2010, 09:16 AM
  2. What mp3 player should I get
    By SATANICAT in forum General
    Replies: 19
    Last Post: 08-06-2006, 02:15 PM
  3. Mp3 Fur Meeeza
    By EleMentX in forum Art & Graphic Design
    Replies: 16
    Last Post: 07-28-2006, 07:18 AM
  4. great mp3 downloads-hip hop, pop
    By m164life in forum Entertainment
    Replies: 0
    Last Post: 02-21-2006, 08:51 AM