My Twist on the Porn Uploading Method

Yeah I feel you. I still recommend always commenting if you plan on editing anything later. Not that I follow my own advice, I can't tell you how many times I've gone on an addy binge and spent two days writing extremely illegible code that somehow runs. So many rewrites...

Yeah... I'm just lazy lol. I need to rewrite the rest of this script that stitches everything together. It's currently broken.
 
I would expect higher views to translate to higher ranks, yes. Most websites have a sort by views option do they not? Even if they don't someone will be more inclined to click the video with 1k views than the one with 20 views.

Do you have experience with this? I've written a simple bot to mimic a page visit, is there a particular action I would need to perform? I'm on Xvideo here - do you have to watch the whole thing through? Or can I just ping the page with a simple request?
 
Do you have experience with this? I've written a simple bot to mimic a page visit, is there a particular action I would need to perform? I'm on Xvideo here - do you have to watch the whole thing through? Or can I just ping the page with a simple request?
I don't have any experience faking views. Maybe upload three videos: ping one, have a headless browser (selenium/mechanize) visit another and stay on the page until the end of the video and for the third send a request with just a user-agent header. Check the views afterwards.

EDIT: Actually if you monitor the network traffic in developer tools while watching the video you should be able to see if the website knows how long you're staying, might even be able to fake it if they don't obfuscate.
 
If you find out that you just need to submit the request but it's based on IP you should find out how many views register per IP and spam requests through free proxies. You can find lists of em on google.
 
Run this to see if the views change
Code:
import time
import selenium
from selenium import webdriver
url = "https://www.website.com" # REPLACE VARIABLE ON THIS LINE
driver = webdriver.Firefox()
driver.get(url)
time.sleep(number of seconds in video) # REPLACE VARIABLE ON THIS LINE
driver.close()
if they do, find a list of proxies and run this
Code:
import time
import selenium
from selenium import webdriver
from selenium.webdriver.common.proxy import*
proxies = ["1.2.3.4:8080","8.8.8.8:1337"] # REPLACE VARIABLE ON THIS LINE
url = "https://www.website.com" # REPLACE VARIABLE ON THIS LINE
maxViewsPerProxy = 1 # REPLACE VARIABLE ON THIS LINE
for proxy in proxies:
    for i in range(0,maxViewsPerProxy):
        proxyP = Proxy({
        'proxyType':proxyType.MANUAL,
        'httpProxy': proxy,
        'ftpProxy': proxy,
        'sslProxy': proxy
        })
        driver = webdriver.Firefox(proxy=proxyP)
        driver.get(url)
        time.sleep(number of seconds in video) # REPLACE VARIABLE ON THIS LINE
        driver.close()

You can get rid of the time.sleep if you look in the network tab of develop tools and see that no packets are being sent as you watch the video.
 
Last edited:
Some sites send data about your window size, you can probably just edit that out.
 
You can try to put upvotes into the mix as well, if you want to rank your videos. Someone posted a thread not too long ago about ranking videos on adult tube sites. I'm not in the uploading scene myself, but i tried it and i was shocked that upvotes and views can be manipulated this easily. I headed over to the 2 biggest porn tube site and to my surprise, you don't even need an account to upvote on neither.
 
Hey Naughtnewell

I love your thinking in this method and it was something I had tried. However, coding is not in my genetic makeup! I have used other programs to download a lot of tumblr porn, so that is not the issue. My problem has been ffmpeg, I've never used it before and have been having an issue with it even after watching countless tutorials.

So maybe you can answer my question. Is there a way to place all the videos into one folder and have ffmpeg create a full video out of say 3 random video clips in this folder?So every time that it runs a new video would be produced. I am sure it could be done, but I am getting lost in the code. I have figured out how to create a video from separate clips, just no way to randomize what is being created. Any help would be appreciated.

Thanks
 
You can try to put upvotes into the mix as well, if you want to rank your videos. Someone posted a thread not too long ago about ranking videos on adult tube sites. I'm not in the uploading scene myself, but i tried it and i was shocked that upvotes and views can be manipulated this easily. I headed over to the 2 biggest porn tube site and to my surprise, you don't even need an account to upvote on neither.

Do you happen to have a link to that thread?
 
Did your uploads lead to monetization though? Did you use watermarks and link to your own site, or did the uploads themselves bring in the bacon?

I have a lot of cam caps (probably never seen anywhere else) and I'd like to try to make some dough from them.
 
I also managed to make a script to download videos, watermark them using ffmpeg and then upload them. After running it for 2 weeks, I realized that most of the views came just from the 'Recently Added' sections of porn sites. The ideal theory is more videos you upload, more traffic you should get but in real life for quantity upload I don't think its true.
Now I have shifted to manually doing stuff on VPS. Lets see how this turns out, uniques are much more that before already.
Some sites including redtube accept fake traffic from Website Viewer 2015, and I have managed to get few videos to the trending page.
Will have to find a way to rank on other sites. GL :)
 
I also managed to make a script to download videos, watermark them using ffmpeg and then upload them. After running it for 2 weeks, I realized that most of the views came just from the 'Recently Added' sections of porn sites. The ideal theory is more videos you upload, more traffic you should get but in real life for quantity upload I don't think its true.
Now I have shifted to manually doing stuff on VPS. Lets see how this turns out, uniques are much more that before already.
Some sites including redtube accept fake traffic from Website Viewer 2015, and I have managed to get few videos to the trending page.
Will have to find a way to rank on other sites. GL :)

Redtube is the only site that banned my chit

But yea.. i think people make $$ from this just from sheer numbers. I have made more than 2 dollars but its not much
 
Hey Naughtnewell

I love your thinking in this method and it was something I had tried. However, coding is not in my genetic makeup! I have used other programs to download a lot of tumblr porn, so that is not the issue. My problem has been ffmpeg, I've never used it before and have been having an issue with it even after watching countless tutorials.

So maybe you can answer my question. Is there a way to place all the videos into one folder and have ffmpeg create a full video out of say 3 random video clips in this folder?So every time that it runs a new video would be produced. I am sure it could be done, but I am getting lost in the code. I have figured out how to create a video from separate clips, just no way to randomize what is being created. Any help would be appreciated.

Thanks

Entirely possible with a bash script or a simple python script.

Code:
from random import sample
from glob import glob
import subprocess

files = [x for x in glob('.')]

#Change 3 to how many files you want to use.
files_to_use = sample(files, 3)

command = "ffmpeg -threads 0 -i "concat:%s"  -c copy  output.mp4" % '|'.join(files_to_use)

subprocess.Popen(command, shell=True, stdout=subprocess.PIPE, stderr=subprocess.STDOUT).communicate()

Should do it.
 
Did your uploads lead to monetization though? Did you use watermarks and link to your own site, or did the uploads themselves bring in the bacon?

I have a lot of cam caps (probably never seen anywhere else) and I'd like to try to make some dough from them.
I've got watermarks on my videos, yeah. They haven't really been bringing in too much bacon to be frank, which is why I shared the method here. Because I want to see if other people can have more success than I have.
 
Has anyone figured out an actual working method to generate views on redtube specifically?
 
Back
Top