need help with ffmpeg

Ennondt

Newbie
Joined
Oct 13, 2022
Messages
28
Reaction score
2
Hello, can someone create an interface with ffmpeg where i upload videos and the videos will be edited unique so platforms like tiktok cannot recognize the videos again.

Means you should have the possibility to edit the brightness make filter, change speed change audio and flip the video but for bulk videos means 200 videos for example in the same time
 
You don't really need an interface for that and most likely everything can be done in a 1 liner.

Here is an example:

Code:
for %i in (*.mp4) do ffmpeg -i "%i" -vf hflip -preset veryfast -c:a copy -c:s copy %i_intro.mp4

You run this inside of the folder with your .mp4 videos and it will flip all of them horizontally. Now google what else you want to do and keep adding stuff to it.

Here's a thread with more useful commands:
https://www.blackhatworld.com/seo/useful-ffmpeg-command-lines-for-youtube.972089/
Might as well just learn all of this yourself because it doesn't take long and it'll be useful for many other projects besides tiktok.
 
It already exists if you don't want to deal with cmd.

Code:
https://handbrake.fr/


Here's what they use for the software ..
Code:
https://github.com/HandBrake/HandBrake/blob/master/THANKS.markdown/


Not affiliated.
 
It already exists if you don't want to deal with cmd.

Code:
https://handbrake.fr/


Here's what they use for the software ..
Code:
https://github.com/HandBrake/HandBrake/blob/master/THANKS.markdown/


Not affiliated.
Means this makes the video unique so i could post it to tiktok and they don’t notice?

Also if this is with bulk editing then that’s awesome
 
Means this makes the video unique so i could post it to tiktok and they don’t notice?

Also if this is with bulk editing then that’s awesome
Try it out and see it for yourself! It's an wonderful opensource software that is built on top of ffmpeg. You get full granular control in the gui, and can queue multiple files.

Example

1683228556738.png



queue example
1683228654920.png
 
there is a tool called clipboost, google it, it uses FFmpeg to clean video metadata and making content algorithm-friendly for platforms like TikTok/Instagram
 
Hello, can someone create an interface with ffmpeg where i upload videos and the videos will be edited unique so platforms like tiktok cannot recognize the videos again.

Means you should have the possibility to edit the brightness make filter, change speed change audio and flip the video but for bulk videos means 200 videos for example in the same time
there is a tool called clipboost, google it, it uses FFmpeg to clean video metadata and making content algorithm-friendly for platforms like TikTok/Instagram
 
Back
Top