Need Help with Adult Website

zaogord

BANNED
Joined
Jul 18, 2019
Messages
195
Reaction score
167
So, i got a domain.
Next thing i find out is that there are no nulled wp-script plugins. Like mass embedder and all other.

Can you throw in some tips/tricks at me.
Like any automation tools.
Video Grabbers
Mass Embedders
And anything else that i'm missing.
 
Don't go for nulled. I also think like you when I was starting, but when you get a lot of visitors You will regret it. Save some money and buy paid scripts. You get lifetime updates and clean script, you will never worry about any backdoor. I learned the hard way when my website suddenly started deleting thumbnails. IDK why but it was because of a nulled wordpress theme. Maybe a faulty code idk..
 
Last edited:
If you are looking for shortcuts you will not succeed...:suspicious:

Feel free to browse through the tutorial I've written on the subject...

https://www.blackhatworld.com/seo/method-make-money-with-0-investment-and-without-previous-experience.1140987/

Woah, that's a long ass post and i did read it before setting up my adult website.
My main concern now is that i need help with tools.
for ex, a tool to add intro to 20 videos at once and also add a watermark on them.
:)

Don't go for nulled. I also think like you when I was starting, but when you get a lot of visitors You will regret it. Save some money and buy paid scripts. You get lifetime updates and clean script, you will never worry about any backdoor. I learned the hard way when my website suddenly starting deleting thumbnails. IDK why but it was because of a nulled wordpress theme. Maybe a faulty code idk..

I'm aware of that sir, thank you the heads up
 
Woah, that's a long ass post and i did read it before setting up my adult website.
My main concern now is that i need help with tools.
for ex, a tool to add intro to 20 videos at once and also add a watermark on them.
:)



I'm aware of that sir, thank you the heads up

Use FFMPEG to do that. It's going to take a few hours to get a grasp of it but this is the best and fastest way to add intros/watermarks to all of your videos.
It took me a few hours searching through google to do it and now it saves me a bunch of time.
 
Use FFMPEG to do that. It's going to take a few hours to get a grasp of it but this is the best and fastest way to add intros/watermarks to all of your videos.
It took me a few hours searching through google to do it and now it saves me a bunch of time.

I tried that man, i'm still trying to figure out how to get it to the perfect size.
My watermarks end up real big
 
try this.

Code:
ffmpeg -i input.mp4 -movflags faststart -acodec copy -vf "drawtext=text='example.com':fontfile=fontfile.woff: y=h-line_h-52:x=w-(mod(1*n\,w+tw)-tw/50): [email protected]: fontsize=h/30",drawtext="text='example.com': fontcolor=white: fontsize=h/20:fontfile="fontfile.woff": x=w-tw-10:y=10" output.mp4

you will get 1 watermark on top right corner. it will resize based on the resolution of video.
and 1 watermark scrolling on bottom at 25% opacity.

if you just want the size. It will be based on the video resolution. so your font size will be relative to the size of video
Code:
y=h-line_h-52:x=w-(mod(1*n\,w+tw)-tw/50)
 
try this.

Code:
ffmpeg -i input.mp4 -movflags faststart -acodec copy -vf "drawtext=text='example.com':fontfile=fontfile.woff: y=h-line_h-52:x=w-(mod(1*n\,w+tw)-tw/50): [email protected]: fontsize=h/30",drawtext="text='example.com': fontcolor=white: fontsize=h/20:fontfile="fontfile.woff": x=w-tw-10:y=10" output.mp4

you will get 1 watermark on top right corner. it will resize based on the resolution of video.
and 1 watermark scrolling on bottom at 25% opacity.

if you just want the size. It will be based on the video resolution. so your font size will be relative to the size of video
Code:
y=h-line_h-52:x=w-(mod(1*n\,w+tw)-tw/50)

Thank you, that works.
what if i have a png file and want that to adjust according to the video resolution?
 
Back
Top