ilyxa
Junior Member
- Jan 22, 2022
- 152
- 105
For the test, yes.are you doing this for free
For the test, yes.are you doing this for free
You're welcome mate!
So yeah, I didn't write a particular script for generating truly unique videos, just for creating out of footage
But I would suggest you to for example write a script that takes your video and write several commands in ffmpeg, which would be randomly executed, you can even write tho this command will be executed several times on one video in for loop
for example:
Python:import os import random import subprocess import glob #there you can specify all command you can want to use: unique_command_1 = 'ffmpeg command for adding color filters' unique_command_2 = 'ffmpeg command for rescaling' unique_command_3 = 'ffmpeg command for adding text' ... unique_command_n = 'ffmpeg command for adding noise' #you can also create command that takes all the videos from some folder and pushes to the array videos = [f.name for f in os.scandir("your videos subforlder") if f.is_file() and f.name.endswith(".mp4")] commands = [unique_command_1,unique_command_2,unique_command_3, ... ,unique_command_n] # if you want several videos you should create a loop: amount_vids = 3 #number of videos you want for i in range(amount_vids): #this takes random video and random command: unique_command = random.choice(commands) random_video = random.choice(videos) #if you're using random video then consider this structure of command: f"ffmpeg ${random_video} | there your command | output_video${random.radint(100,999)}.mp4" #and then just execute your commands: subprocess.run(unique_command) # if you want to use several commands on video you can do smth like this: for i in range(amount_vids): random_video = random.choice(videos) #your commands now should look like: f"ffmpeg ${input_vid} | there your command | temp_video${i}.mp4" unique_command = random.choice(commands) input_vid = random_video amount_commands = 3 for i in range(amount_commands): subprocess.run(unique_command) input_vid = F"temp_video${i}.mp4" #rename and remove temps os.rename(f"temp_video${amount_commands}.mp4", f"output_video${random.radint(100,999)}.mp4") files = glob.glob("temp_*") for file in files: os.remove(file)
I have probably mistaken somewhere there cause I'm not that good at programming ;D, but I hope you got the point
And of course you should use ChatGPT for all of this, it can sometimes have mistakes in code, but with explanation it works good
No, I am not uploading this kind of vids. I am uploading vids about gaming, mainly some gameplay sequences with some effects and background music. I want to upload (same/spun) video in several accounts, so I am asking here about making a video unique in the eyes of TikTokAre you uploading the videos where you show your face or videos like those rich lifestyle vids where you have something in the background and caption with tts?
are you doing this for free
ffmpeg is a solution for you.
Didn't work, you mean your account was shadowbanned?Small update :
So I tried most of the suggesting I got from the folks here, the conclusion : THEY DIDN'T WORK
Yeah, in overall we can say that adding noise, changing playback speed, and deleting meta they all didn't make the video unique for TikTok.
NB : I didn't want to combine a lot of filters and effects since I didn't want to distorde the video too much - especially noise effect.
Apparently (according to my experince), it does take more than some simple effects to make the video unique in the eyes of TikTok, like using GUI based software to add more interesting elements - the thing which I don't wanna do since I want to do batch processing and most GUI software don't offer such solution.
So, again this thread is still active and I will keep updating it, if anyone has a method/script/software/ whatever information that could help, please comment below
That's it for now !
Didn't work, you mean your account was shadowbanned?
Cause I uploaded same video with little of changes (noise) on tiktok, and it worked good, but engagement was less of course
got you, I have sometimes same issue, don't know what to doNo, the account didn't get shadowbanned, I got some engagement but it was very low.
So, this why I am saying it didn't work, because in my method I don't care about growing accounts (because they will get banned eventually), I do care about the first engagement, so I need to get as much views as I can on the first videos I publish.
DM me, I can't dm yet, very interested if this works outFor the test, yes.
DM me, I can't dm yet, very interested if this works out
Reuploading movies to TikTok will not result in the suspension of your account. I accomplish it effortlessly.
Send me a PM your Telegram, I'll send you the program. But you will need a detailed feedback.I have been waiting his response for 3 weeks, it looks that he dropped the idea or he is busy with other stuff and doesn't have time to check my messages.
Yeah, I know. but my case is a bit special bro.
1. I upload cpa (blackhat) videos, so my account will get suspend eventually.
2. I want to make slight changes to the original video so Tiktok sees it as new because now when I re-upload the exact same video, I get 0 views.
maybe u have some guides or something regarding applying effects with moviepy? thanks!Idk what you are doing exactly, but for the gaming niche you should try not just reposting the videos, but maybe download some long gameplay and separate it with moviepy, after that add 3-5 effects that dont change the video as much like coloring one pixel, watermarking, adding outro, trimming, and similar stuff.
def flip_video(path):
try:
(
ffmpeg.input(path)
.filter("hflip")
.output(
path.replace(".mp4", "_flipped.mp4"), map_metadata=-1, loglevel="quiet"
)
.run()
)
return True
except ffmpeg.Error as e:
print(e.stderr)
return False