Bulk Video Watermark Software?

ThemeWave

Regular Member
Joined
Oct 13, 2013
Messages
486
Reaction score
312
Anyone here know of a program that will add a watermark or text to a collection of videos?

I have like 150 videos and don't want to do them manually. A freebie would be awesome if there is any such program.
 

ThemeWave

Regular Member
Joined
Oct 13, 2013
Messages
486
Reaction score
312
I downloaded ffmpeg and wow not sure if I downloaded the right files but I can't find the install for it. Unzips a bunch of files but no install?
Looked it up on youtube but looks way to complicated so is there any other programs out there that will do this?
 

Capo Dei Capi

BANNED
Joined
Oct 23, 2014
Messages
752
Reaction score
7,253
1. Create a folder called Watermarking
2. put your .png watermark file in there
3. just put ffmpeg in there its under bin of where ffmpeg is located
4. create a new folder called newfiles
5. create a .bat called batch with the following
HTML:
for %%a in ("*.flv") do ffmpeg -i "%%a" -i watermark.png -filter_complex "overlay=10:10" "newfiles\%%~na.flv"
pause
You can change the .flv to whatever file format you are using, as well as the overlay code to where you want watermark on certain batch runs
http://ksloan.net/watermarking-videos-from-the-command-line-using-ffmpeg-filters/
6. put the videos in the Watermarking folder and double click the batch file


Video Example.jpg
 

ThemeWave

Regular Member
Joined
Oct 13, 2013
Messages
486
Reaction score
312
1. Create a folder called Watermarking
2. put your .png watermark file in there
3. just put ffmpeg in there its under bin of where ffmpeg is located
4. create a new folder called newfiles
5. create a .bat called batch with the following
HTML:
for %%a in ("*.flv") do ffmpeg -i "%%a" -i watermark.png -filter_complex "overlay=10:10" "newfiles\%%~na.flv"
pause
You can change the .flv to whatever file format you are using, as well as the overlay code to where you want watermark on certain batch runs
http://ksloan.net/watermarking-videos-from-the-command-line-using-ffmpeg-filters/
6. put the videos in the Watermarking folder and double click the batch file


View attachment 63470


Thanks mate.
Will try this today after I have a sleep :D
 

ChanzGrande

Elite Member
Joined
Feb 16, 2008
Messages
2,484
Reaction score
1,219
Thanks mate.
Will try this today after I have a sleep :D

Anyone know a way to do this using text instead of a graphics input file. Don't want to take the time to make the overlays plus I have some slightly different video dimensions for my batch processes. Any help is greatly appreciated.
 
Top