1. Advertising
    y u no do it?

    Advertising (learn more)

    Advertise virtually anything here, with CPM banner ads, CPM email ads and CPC contextual links. You can target relevant areas of the site and show ads based on geographical location of the user if you wish.

    Starts at just $1 per CPM or $0.10 per CPC.

want to download youtube videos using php script???

Discussion in 'PHP' started by Invisible_Flash, Oct 31, 2011.

  1. #1
    i want to download youtube videos using php script ... suggest me some ideas and resources...
     
    Invisible_Flash, Oct 31, 2011 IP
  2. aditd

    aditd Well-Known Member

    Messages:
    918
    Likes Received:
    6
    Best Answers:
    0
    Trophy Points:
    128
    Digital Goods:
    2
    #2
    aditd, Nov 4, 2011 IP
  3. kristenmorey111

    kristenmorey111 Peon

    Messages:
    43
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #3
    kristenmorey111, Nov 4, 2011 IP
  4. EpicMo

    EpicMo Active Member

    Messages:
    3
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    56
    #4
    check out www.utubeking.com it does just what you need, downloads videos in mp4 format
     
    EpicMo, Jun 10, 2013 IP
  5. charitha dayantha

    charitha dayantha Greenhorn

    Messages:
    1
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    21
    #5
    chech this site www.videolk.cu.cc
     
    charitha dayantha, Jul 11, 2013 IP
  6. italianddl

    italianddl Well-Known Member

    Messages:
    177
    Likes Received:
    2
    Best Answers:
    0
    Trophy Points:
    123
    Digital Goods:
    3
    #6
    https://marketplace.digitalpoint.com/italianddl.555451/author
     
    italianddl, May 9, 2016 IP
  7. Vooler

    Vooler Well-Known Member

    Messages:
    1,146
    Likes Received:
    64
    Best Answers:
    4
    Trophy Points:
    150
    #7
    If you have your own VPS or dedicated server or can find a server where you can get software "youtubedl" installed.
    Once said software ins installed the php script is puny:

    <?php
        $output = `/usr/bin/youtubedl  "https://www.youtube.com/watch?v=FGeIYkjpqI0"`;
    
        print $output;
    PHP:
    Let me know if you need further details.

    NOTE: if you want to try it on windows , find youtubedl win32 binary copy youtubedl.exe to folder where your php script is and modify above code to:

    <?php
        $output = `youtubedl.exe  "https://www.youtube.com/watch?v=FGeIYkjpqI0"`;
    
        print $output;
    PHP:

    I hope i helps.

    Stay well.....
     
    Vooler, May 12, 2016 IP