User Tag List

Results 1 to 5 of 5

Thread: Video Downloader

  1. #1
    Video Downloader

    User Info Menu

    Video Downloader

    Link:

    Code:
    http://www.sendspace.com/file/riih1m
    Read Me:

    This program was programmed in C++ by TheEliteOne.

    It will ask for a link, enter the link to the video you want to download with out the http:// and press enter, Internet Explorer will open up and a website will give the following file types:

    3GP
    3GP
    3GP
    FLV
    MP4

    Thanks and credit:
    ================

    Bl4Ck.KiD...
    -------------

    Posting a tutorial on google, yahoo, and bing web searching, I took a look at it and found out how he made it. So thanks!

    The web site keepvid.com
    ------------------------------------------



    -TheEliteOne
    This can be used for downloading youtube videos or any other videos from other sites like it.

    Enjoy !

    If you have an idea on a PSP related program that is ran on Windows PM me with some information on your idea please.

  2. #2
    Video Downloader

    User Info Menu

    Re: Video Downloader

    May I have source code?
    Quote Originally Posted by Epic of HITB
    get... 1) a mini fridge | 2) A toilet installed in your room | 3) a closet full of non-perishable foods | 4) Lyscol ( who needs showers anyway?) | 5) tons of books articles lectures zines etc etc

    Dont leave your room...EVER... AND I MEAN EVER
    Damned six line limit! *NERD RAGE*

  3. #3
    Video Downloader

    User Info Menu

    Re: Video Downloader

    Quote Originally Posted by S2h6699 View Post
    May I have source code?
    Sure:

    #include <iostream>
    #include <string>
    #include <windows.h>
    using namespace std;

    string WebSearch(string query)
    {
    int i=0;
    for(i; i<query.size(); i++)
    {
    if(query[i]==' ')
    {
    query=query.replace(query.find(" ",0), 1, "+");
    }
    else if(query[i]=='+')
    {
    query=query.replace(query.find("+",0), 1, "%2B");
    }
    }
    string url="http://keepvid.com/?url=http%3A%2F%2F";
    url.insert(url.size(), query);
    return url.c_str();
    }

    int main()
    {
    system("title TheEliteOne's Video Downloader");
    cout<<"Enter the link to the vide you want to donwload (No http://)\n\n";
    string s;
    getline(cin,s);
    s=WebSearch(s);
    ShellExecute(NULL, "open", s.c_str(), NULL, NULL, SW_SHOWNORMAL);
    return 0;
    }

    If you have an idea on a PSP related program that is ran on Windows PM me with some information on your idea please.

  4. #4
    Video Downloader

    User Info Menu

    Re: Video Downloader

    hmmm.

  5. #5
    Video Downloader

    User Info Menu

    Re: Video Downloader

    Quote Originally Posted by B1G_BR0TH3R View Post
    hmmm.
    Ummmm, okay, this isn't a "great" program guys, I just modded Bl4Ck.KiD...'s google searcher, and btw I already asked him and it's okay.

    If you have an idea on a PSP related program that is ran on Windows PM me with some information on your idea please.

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •