Need a Video script like YouPorn

Discussion in 'Scripts' started by dirkthai, Sep 9, 2007.

  1. #1
    Who can tell me or have a script like youporn or something.
    A video upload , play , download script.

    The I mean NO free scripts or open source.
    Allso NO attachmax script.

    I will pay for a good script , must be fast.

    Thnx in advance for the reply.
     
    dirkthai, Sep 9, 2007 IP
  2. deccanbazaar.biz

    deccanbazaar.biz Banned

    Messages:
    2,349
    Likes Received:
    40
    Best Answers:
    0
    Trophy Points:
    0
    #2
    Hello please check Pm for the demo link .. it may be helpful to you.
     
    deccanbazaar.biz, Sep 10, 2007 IP
  3. SteveAR

    SteveAR Well-Known Member

    Messages:
    2,692
    Likes Received:
    42
    Best Answers:
    0
    Trophy Points:
    160
    #3
    looking for the same script here.
     
    SteveAR, Sep 12, 2007 IP
  4. nexusix9

    nexusix9 Peon

    Messages:
    278
    Likes Received:
    4
    Best Answers:
    0
    Trophy Points:
    0
    #4
    i am loking for it too
     
    nexusix9, Sep 29, 2007 IP
  5. dirkthai

    dirkthai Active Member

    Messages:
    556
    Likes Received:
    9
    Best Answers:
    0
    Trophy Points:
    78
    #5
    Hi Thnx , but have MOD a free script now already.
     
    dirkthai, Oct 3, 2007 IP
  6. techtutorial

    techtutorial Guest

    Best Answers:
    0
    #6
    I need the same script if anyone can send me some links

    i need it to look mostly like youporn. or youtube
     
    techtutorial, Oct 4, 2007 IP
  7. nexusix9

    nexusix9 Peon

    Messages:
    278
    Likes Received:
    4
    Best Answers:
    0
    Trophy Points:
    0
    #7
    isnt there a free script :(
     
    nexusix9, Oct 5, 2007 IP
  8. cricketclips4u

    cricketclips4u Peon

    Messages:
    2
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #8
    would any body plz pm me for youtube or xtube clone scripts, free or paid doesn't matter.
     
    cricketclips4u, Oct 7, 2007 IP
  9. stabilo66

    stabilo66 Banned

    Messages:
    513
    Likes Received:
    6
    Best Answers:
    0
    Trophy Points:
    0
    #9
    Please PM me details, I am looking for this script too.

    Thnx
     
    stabilo66, Oct 15, 2007 IP
  10. walker2007

    walker2007 Well-Known Member

    Messages:
    304
    Likes Received:
    7
    Best Answers:
    0
    Trophy Points:
    130
    #10
    Hi,

    I am in the same boat. Looking for video script, so members can upload videos to the site. Must be able to catagorise the videos by date.
    Prefer free obviously, but will pay for the correct one too.
    PLEASE pm me...
     
    walker2007, Oct 16, 2007 IP
  11. pasfile

    pasfile Active Member

    Messages:
    603
    Likes Received:
    16
    Best Answers:
    0
    Trophy Points:
    60
    #11
    pasfile, Oct 16, 2007 IP
  12. dark0circles

    dark0circles Peon

    Messages:
    660
    Likes Received:
    4
    Best Answers:
    0
    Trophy Points:
    0
    #12
    please Pm the script
     
    dark0circles, Oct 16, 2007 IP
  13. murderdolls

    murderdolls Peon

    Messages:
    7
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #13
    Hi all, I wanna script for play youporn videos or like that. Pls help ? or pm. Plz. Thanks
     
    murderdolls, Dec 2, 2007 IP
  14. cam34

    cam34 Banned

    Messages:
    1
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #14
    Hey Guys and Gals (Eve) :-P

    Spent an hour and bit writing and testing this script out.
    What it does is download and rip a youporn.com flv movie and convert it to mpeg.
    Sorry guys this is LINUX only and depends on ffmpeg and wget to be installed.

    Anyway copy and paste into a txt file called youporn.sh then chmod +x youporn.sh

    USAGE: ./youporn.sh URL-of-youporn.com-page-(NOT-flv-link) filename-to-save-as
    EXAMPLE: ./youporn.sh http://www.youporn.com/watch/27631 girl-pushes-out-dildo

    
    #!/bin/bash
    # Youporn.com File Ripper and Converter developed by cAm
    # Known to work as of April 2008
    if [[ $# -lt 2 ]];then echo -e "\n USAGE:   ./youporn.sh URL-of-youporn.com-page-(NOT-flv-link) filename-to-save-as \n EXAMPLE: ./youporn.sh http://www.youporn.com/watch/27631 girl-pushes-out-dildo \n SCRIPT BY: cAm! Long Live Mud-Dog! \n \n"; exit 1; fi
    
        #Set the cookie required for access
        COOKIE_TXT=`mktemp` || exit 1
        echo ".youporn.com    TRUE    /    FALSE    1208069450    age_check    1
        .youporn.com    TRUE    /    FALSE    1239519044    sid    CG9WSkgAW8IAABAeBFw6Ag==
        .youporn.com    TRUE    /watch/3027/perfect-ass-anal-sex/    FALSE    1208069159    age_check    1" > $COOKIE_TXT
    
    VIDEO_URL=$1
    TMPFILE=`mktemp` || exit 1
    FLV_TEMP=`mktemp` || exit 1
    wget --load-cookies=$COOKIE_TXT $1 -O ${TMPFILE}
    FLV_URL=$(cat ${TMPFILE} | grep flv | cut -d \" -f2 | cut -f1)
    wget --load-cookies=$COOKIE_TXT $FLV_URL -O $FLV_TEMP
    ffmpeg -i $FLV_TEMP -ab 56 -ar 22050 -b 1000 -s cif -sameq -aspect 4:3 $2.mpg
    
    #Time to tidy up after our selves...
    rm $TMPFILE
    rm $FLV_TEMP
    rm $COOKIE_TXT
    exit 0
    
    
    Code (markup):
    Have fun - Sorry all you win32 people - your missing out on the fun sad.gif
     
    cam34, Apr 12, 2008 IP
  15. extromaster

    extromaster Guest

    Messages:
    10
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #15
    Could someone Pm me details of clone script
    Thanks
     
    extromaster, Apr 13, 2008 IP
  16. make-it-yourself.me.uk

    make-it-yourself.me.uk Active Member

    Messages:
    310
    Likes Received:
    5
    Best Answers:
    0
    Trophy Points:
    60
    #16
    Clone Script of what Youtube ??? there is a few out there
     
    make-it-yourself.me.uk, Apr 13, 2008 IP
  17. everett sizemor

    everett sizemor Peon

    Messages:
    40
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #17
    I did a review of several "YouTube clone" scripts if you want to read it. I have no affiliation with any of the companies so take it or leave it, but I found some to be better than others: http://www.comparethebrands.com/compare/115 .
     
    everett sizemor, Apr 15, 2008 IP
  18. Ni9htRider

    Ni9htRider Peon

    Messages:
    98
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #18
    PM me and I'll send you the official YouPorn clone.
     
    Ni9htRider, Apr 17, 2008 IP
  19. BugsySiegel

    BugsySiegel Active Member

    Messages:
    172
    Likes Received:
    6
    Best Answers:
    0
    Trophy Points:
    58
    #19
    They are using a modified version of ClipShare Script.
     
    BugsySiegel, Apr 19, 2008 IP
  20. make-it-yourself.me.uk

    make-it-yourself.me.uk Active Member

    Messages:
    310
    Likes Received:
    5
    Best Answers:
    0
    Trophy Points:
    60
    #20

    THERE IS NO PORN RULE FOR PHPMOTION

    there new script is in my link at thew bottom
     
    make-it-yourself.me.uk, Apr 23, 2008 IP