Welcome to the GoFuckYourself.com - Adult Webmaster Forum forums.

You are currently viewing our boards as a guest which gives you limited access to view most discussions and access our other features. By joining our free community you will have access to post topics, communicate privately with other members (PM), respond to polls, upload content and access many other special features. Registration is fast, simple and absolutely free so please, join our community today!

If you have any problems with the registration process or your account login, please contact us.

Post New Thread Reply

Register GFY Rules Calendar
Go Back   GoFuckYourself.com - Adult Webmaster Forum > >
The place for sellers and buyers to get together. Sell and buy work, sigs, designs, traffic, gallery spots, cars, whatever. Buyer beware, GFY is not responsible for bad deals.

 
Thread Tools
Old 09-29-2009, 03:20 PM   #1
Killswitch - BANNED FOR LIFE
Guest
 
Posts: n/a
LQD Scraper: Build your own automatic fed tube site instantly!

Was bored the other day and was talking to someone and they mentioned most tube scripts out there that allow embeding from all the big tubes scrapers were crap, so I wrote this class to scrape the tubes and give you all the information you need to start your own embed tube site!

It currently supports Pornhub.com, KeezMovies.com, ExtremeTube.com, RedTube.com and TNAFlix.com. I have plans on adding tons more sites to the lineup also with more features.

It will grab you the url of the video, title, thumbnail, and reconstructs the embed code and even allows you to set the width/height of the player in the class so you don't have 3 different player sizes when generated.

Will go as many pages deep as you want. If you wanna scrape the last 10 pages of porntube, go ahead it will do it.

Example usage, it's easy, and can be used with any script:
PHP Code:
<?php
$Scraper 
= new Scraper;
$Scraper->setParams('300x250');
$tubeData $Scraper->getData('Pornhub:10');
echo 
'<pre>'print_r($tubeData); echo '</pre>';
?>
What that will do is scrape Pornhub's last 10 pages and output an array of all the videos found with the embed player width/height set to 300px by 250px.

Another example:
PHP Code:
<?php
$Scraper 
= new Scraper;
$Scraper->setParams('300x250');
$Scraped = array('Pornhub' => $Scraper->getData('Pornhub:5'),
            
'Keezmovies' => $Scraper->getData('Keezmovies:5'),
            
'Extremetube' => $Scraper->getData('Extremetube:5'),
            
'Redtube' => $Scraper->getData('Redtube:5'),
            
'Tnaflix' => $Scraper->getData('Tnaflix:5'),
            );
$tubeData array_merge($Scraped['Pornhub'],
                   
$Scraped['Keezmovies'],
                   
$Scraped['Extremetube'],
                   
$Scraped['Redtube'],
                   
$Scraped['Tnaflix']
                   );
shuffle($tubeData);
foreach(
$tubeData as $videoData)
{
    
mysql_query('INSERT INTO DATABASE QUERY');
}
?>
That will build another array, merge them all together into 1 giant array, then shuffle them and insert them into your pre-existing database and you can have an instant tube site that will automatically update itself, just by setting a cron tab to run that code every minute/hour/day/week/whatever you want.

Price is $199.95 for the unencoded class. If you want a script built around it I'm open to discussion, or if you want it integrated into your pre-existing script I can do that also.

Currently I only accept Paypal as I have been very lazy about getting my documents in order for Epassporte for my account.

You can try out the class here:
http://demo.five25media.com/LQDScraper/

*************************
Let the flaming begin! Anyone serious about buying this can contact me on AIM: fknvdscom or ICQ: 461013230
  Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 09-30-2009, 08:08 AM   #2
CyberHustler
Unregistered Abuser
 
Industry Role:
Join Date: Feb 2006
Posts: 25,996
See sig for the most awesomest tube script God ever created...
CyberHustler is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 09-30-2009, 09:15 AM   #3
HomerSimpson
Too lazy to set a custom title
 
HomerSimpson's Avatar
 
Industry Role:
Join Date: Sep 2005
Location: Springfield
Posts: 13,826
thats lot of money just for a single class.
you can buy the whole working product for that amount of money (and less) that can do that job...
__________________
Make a bank with Chaturbate - the best selling webcam program
Ads that can't be block with AdBlockers !!! /// Best paying popup program (Bitcoin payouts) !!!

PHP, MySql, Smarty, CodeIgniter, Laravel, WordPress, NATS... fixing stuff, server migrations & optimizations... My ICQ: 27429884 | Email:
HomerSimpson is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 09-30-2009, 12:51 PM   #4
Killswitch - BANNED FOR LIFE
Guest
 
Posts: n/a
Quote:
Originally Posted by HomerSimpson View Post
thats lot of money just for a single class.
you can buy the whole working product for that amount of money (and less) that can do that job...
Yeah, and nobody will wanna buy a full fledged script just to do that if they already have a script they wanna use.

The reason I made it a class is because it can turn any script, hell, even wordpress, into a full fledged automated tube script using this class.

I will be building a tube script around it also, but the class is just that for now.
  Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 09-30-2009, 01:47 PM   #5
96ukssob
So Fucking Banananananas
 
96ukssob's Avatar
 
Industry Role:
Join Date: Mar 2003
Location: If I was in your ass you'd know it
Posts: 12,991
This is an interesting script, but looking at these types of scrapers before a problem was the original source can block your server from pulling the videos. as well, if they start to see a single IP start to make a lot of requests to the page, they will block the IP from scraping.

do you have a solution to any one of these issues? if so, i would be interested in the script but dont want to spend $200 to only be banned by their servers in a matter of days
__________________
Email: Clicky on Me
96ukssob is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 09-30-2009, 01:54 PM   #6
Killswitch - BANNED FOR LIFE
Guest
 
Posts: n/a
Quote:
Originally Posted by bossku69 View Post
This is an interesting script, but looking at these types of scrapers before a problem was the original source can block your server from pulling the videos. as well, if they start to see a single IP start to make a lot of requests to the page, they will block the IP from scraping.

do you have a solution to any one of these issues? if so, i would be interested in the script but dont want to spend $200 to only be banned by their servers in a matter of days
The script only makes 1 call to the site per page scraped. So if you set say Pornhub to scrape the front page, every hour, then they will see 24 visits from your server IP every day. Not even enough to make a blip on their radar let alone ban you.

I Will give a 50% refund of the money if you can prove they banned your server IP. Why only half? Because you'll still have the class and can use it on another server and it will just cause a bunch of people to say they were banned just to get it for free.

I do have a to do list that will have proxy support put into it, but I don't wanna spend 10 months making it the PERFECT class, when I can release updates as I go.
  Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 09-30-2009, 05:18 PM   #7
RegUser
Confirmed User
 
Join Date: Nov 2004
Posts: 1,472
how about a full tube script with demo?
RegUser is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 09-30-2009, 06:42 PM   #8
Killswitch - BANNED FOR LIFE
Guest
 
Posts: n/a
Quote:
Originally Posted by RegUser View Post
how about a full tube script with demo?
I am working on building a tube script to go along with the class.
  Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 10-01-2009, 02:57 PM   #9
Killswitch - BANNED FOR LIFE
Guest
 
Posts: n/a
Ello moto!
  Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 10-01-2009, 05:13 PM   #10
Angry Jew Cat - Banned for Life
(felis madjewicus)
 
Industry Role:
Join Date: Jul 2006
Location: In Mom & Dad's Basement
Posts: 20,368
work in proxy support and there won't be any worry about getting banned for scraping. but like killswitch said. i highly doubt there are going to be any bans over such a minuscule number of requests...
Angry Jew Cat - Banned for Life is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Post New Thread Reply
Go Back   GoFuckYourself.com - Adult Webmaster Forum > >

Bookmarks



Advertising inquiries - marketing at gfy dot com

Contact Admin - Advertise - GFY Rules - Top

©2000-, AI Media Network Inc



Powered by vBulletin
Copyright © 2000- Jelsoft Enterprises Limited.