If you are looking for shortcuts you will not succeed...
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/
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..
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.
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
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)