Jump to content

jiffyspop

New Members
  • Posts

    5
  • Joined

  • Last visited

    Never

Profile Information

  • Gender
    Not Telling

jiffyspop's Achievements

Newbie

Newbie (1/5)

0

Reputation

  1. K well I do belive I fixed most of it the new alpha script is out on http://stagevid.com http://phpflavor.com is where u can down load it
  2. Well true I probably should of read them alot better. But If you go into there forums addon's and mods there are other people that do the same as I did. Just Don't get it lol. yep I was just moding there php files. I was also making it so the video would convert into a mp4 or what ever format the webmaster wanted
  3. Well yesterday I made a mod for phpmotion "YouTube" http://www.highlol.info/ I posted this mod and in less then a hour it was removed. So i was like wtf happened. I have been selling some of my little mods at phpmotion and other sites. Then wow they sent me this mesage. So now I became confused because over 90% of people sell mods that use php files that they have moded out. But isnt this what a mod is ??? So then I recived anouther email But i dont even use the converter in this mod. I just dont get what they are smoking lol. I am going to vear away from phpmotion and use a diff type of script and I would have to say to anybody else DO NOT USE PHPMotion My thought "I thought that they where the best but know I feel like they are the worst". What is other peoples thought on this ?
  4. Ok well what I am trying to do is make a you tube grabber that grabs video from you tube. This is my code <?php $OUTPUT = rand(1000,9999); $BASEURL = "http://youtube.com/get_video.php?="; $url = $_POST['url']; $wget = "/usr/bin/wget"; $tmp = "$OUTPUT.tmp"; $tmp2 = "$OUTPUT"; $txt = "$OUTPUT.txt"; $flv = "$OUTPUT.flv"; $BASEURL = "http://youtube.com/get_video.php?"; $get_base = "$wget $url -O $tmp > /dev/null 2>&1"; $get_info = "grep watch_fullscreen $tmp > $txt"; $videourl = `sed "s;.*\(video_id.\+\)&title.*;\1;" $txt`; $fullurl = "$BASEURL $videourl"; $get_flv = "$wget $fullurl -O $flv > /dev/null 2>&1"; if(isset($_POST['Submit']) && $_POST['Submit'] == "Get It") { // Do your popen on the perl script here, along with anything else } else { //Put your form code here, along with a Submit button with a "value" of "Get It" exec( "$get_base" ); exec( "$get_info" ); exec( "$get_flv" ); echo done; } ?> <html> <body> <form name="form1" method="post" action=""> <div class="aa"><div class="la">Video IRL</div><div class="ra"><INPUT name="url" type="text" id="url"></div></div> <div class="aa"><div class="la"> </div><div class="ra"><input type="submit" name="Submit" value="Submit"></div></div> <div class="aa"></div> </form> </body> </htm> well I can make it grep the watch full screen but i cant get it to read and strip it so i can do a wget any ideas would be awsom
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.