Results 1 to 9 of 9
  1. #1
    king3223's Avatar
    Join Date
    Sep 2009
    Gender
    male
    Posts
    5
    Reputation
    10
    Thanks
    0
    My Mood
    Hot

    [Release] Youtube Downloader - Krrish

    Hi guys as you see in the title here you can download youtube downloder
    I worked On this program 2 weeks
    credits : me only
    for design and coded this program

    Instuctions:
    1st: go to youtube video and copy the url
    2nd: paste the url in the textbox
    3rd: press download and save it where you want

    Note:
    if the video isn't working download any converter or download vlc player
    because the format of this downloader is flv*
    vlc player

    pitcure:


    virustotal
    VirusTotal - Free Online Virus, Malware and URL Scanner


    password: krrish
    Last edited by EndRiT; 09-07-2010 at 11:57 PM.

  2. #2
    Jason's Avatar
    Join Date
    Apr 2010
    Gender
    male
    Location
    /dev/null
    Posts
    5,704
    Reputation
    918
    Thanks
    7,676
    My Mood
    Mellow
    Probably wanna remove the advertisement otherwise it won't get appoved. I seriously doubt you did all the link parsing on your own either, but I'll let it slide.

    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)

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

    Invidus (09-07-2010)

  4. #3
    Invidus's Avatar
    Join Date
    Jan 2010
    Gender
    male
    Posts
    2,167
    Reputation
    23
    Thanks
    650
    My Mood
    Bored
    1 question?
    Whats link parsing O.o

  5. #4
    king3223's Avatar
    Join Date
    Sep 2009
    Gender
    male
    Posts
    5
    Reputation
    10
    Thanks
    0
    My Mood
    Hot
    Quote Originally Posted by J-Deezy View Post
    Probably wanna remove the advertisement otherwise it won't get appoved. I seriously doubt you did all the link parsing on your own either, but I'll let it slide.
    i didn't understand what you want?

  6. #5
    bbhing987's Avatar
    Join Date
    Aug 2010
    Gender
    male
    Location
    ng
    Posts
    58
    Reputation
    10
    Thanks
    2
    can u include the source code for noobs like me to learn

  7. #6
    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 ilikewaterha View Post
    1 question?
    Whats link parsing O.o
    Extracting the video from a youtube link, here's a snippet that does just that (I didn't make it, Hassan did, but this gives you an idea of what he would have had to work out "all on his own")

    [php]
    Dim x As String = GetPage(videoLink)
    Dim first As String = "delete yt.preload.videoConnection"
    Dim second As String = "img = null"
    Dim f1 As Integer = x.IndexOf(first) + first.Length + 1
    Dim f2 As Integer = x.IndexOf(second, f1) + 1
    Dim final As String = Mid(x, f1, f2 - f1)
    Dim q1 As Integer = final.IndexOf("};") + 3
    Dim q2 As Integer = final.IndexOf(";", q1) + 1
    Dim final2 As String = Mid(final, q1, q2 - q1)
    final2 = final2.Replace("img.src = ", "")
    final2 = final2.Replace("'", "")
    final2 = final2.Replace("https:\/\/", "https://")
    final2 = final2.Replace("\/", "/")
    final2 = final2.Replace("generate_204", "videoplayback")
    final2 = final2.Trim
    [/php]

    GeeGee?

    Quote Originally Posted by king3223
    i didn't understand what you want?
    The massive g(o)rdonsys advertisement, remove it if you plan on releasing on MPGH

    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)

  8. #7
    Invidus's Avatar
    Join Date
    Jan 2010
    Gender
    male
    Posts
    2,167
    Reputation
    23
    Thanks
    650
    My Mood
    Bored
    He can't lmao.
    Its not his program xD

    Well i don't think so..

  9. #8
    king3223's Avatar
    Join Date
    Sep 2009
    Gender
    male
    Posts
    5
    Reputation
    10
    Thanks
    0
    My Mood
    Hot
    Quote Originally Posted by J-Deezy View Post


    Extracting the video from a youtube link, here's a snippet that does just that (I didn't make it, Hassan did, but this gives you an idea of what he would have had to work out "all on his own")

    [php]
    Dim x As String = GetPage(videoLink)
    Dim first As String = "delete yt.preload.videoConnection"
    Dim second As String = "img = null"
    Dim f1 As Integer = x.IndexOf(first) + first.Length + 1
    Dim f2 As Integer = x.IndexOf(second, f1) + 1
    Dim final As String = Mid(x, f1, f2 - f1)
    Dim q1 As Integer = final.IndexOf("};") + 3
    Dim q2 As Integer = final.IndexOf(";", q1) + 1
    Dim final2 As String = Mid(final, q1, q2 - q1)
    final2 = final2.Replace("img.src = ", "")
    final2 = final2.Replace("'", "")
    final2 = final2.Replace("https:\/\/", "https://")
    final2 = final2.Replace("\/", "/")
    final2 = final2.Replace("generate_204", "videoplayback")
    final2 = final2.Trim
    [/php]

    GeeGee?



    The massive g(o)rdonsys advertisement, remove it if you plan on releasing on MPGH
    removed from the program
    getting new links

    Quote Originally Posted by J-Deezy View Post


    Extracting the video from a youtube link, here's a snippet that does just that (I didn't make it, Hassan did, but this gives you an idea of what he would have had to work out "all on his own")

    [php]
    Dim x As String = GetPage(videoLink)
    Dim first As String = "delete yt.preload.videoConnection"
    Dim second As String = "img = null"
    Dim f1 As Integer = x.IndexOf(first) + first.Length + 1
    Dim f2 As Integer = x.IndexOf(second, f1) + 1
    Dim final As String = Mid(x, f1, f2 - f1)
    Dim q1 As Integer = final.IndexOf("};") + 3
    Dim q2 As Integer = final.IndexOf(";", q1) + 1
    Dim final2 As String = Mid(final, q1, q2 - q1)
    final2 = final2.Replace("img.src = ", "")
    final2 = final2.Replace("'", "")
    final2 = final2.Replace("https:\/\/", "https://")
    final2 = final2.Replace("\/", "/")
    final2 = final2.Replace("generate_204", "videoplayback")
    final2 = final2.Trim
    [/php]

    GeeGee?



    The massive g(o)rdonsys advertisement, remove it if you plan on releasing on MPGH
    removed from the program
    getting new links

  10. #9
    EndRiT's Avatar
    Join Date
    Dec 2005
    Gender
    male
    Location
    USSR
    Posts
    12,751
    Reputation
    170
    Thanks
    4,294,967,295
    No virus scan, no approval.
    Closed.

Similar Threads

  1. [Release]Youtube Video Downloader
    By Hassan in forum Visual Basic Programming
    Replies: 25
    Last Post: 02-20-2011, 05:35 PM
  2. [Release] YouTube MP3 Downloader
    By apezwijn in forum General
    Replies: 12
    Last Post: 11-30-2010, 09:16 AM
  3. [Release]Youtube Video Downloader
    By ShadowPwnz in forum Visual Basic Programming
    Replies: 3
    Last Post: 05-17-2010, 07:23 AM
  4. [Release] Youtube Downloader
    By Nyx- in forum Visual Basic Programming
    Replies: 8
    Last Post: 04-30-2010, 06:02 PM
  5. [Release] - Youtube Downloader by Stryker0808
    By stryker0808 in forum Visual Basic Programming
    Replies: 10
    Last Post: 02-25-2010, 11:21 AM