View Single Post
Old 06-25-2014, 10:30 AM  
signupdamnit
Confirmed User
 
signupdamnit's Avatar
 
Industry Role:
Join Date: Aug 2007
Posts: 6,697
On Linux using ffmpeg:

Code:
for f in *.*; do ffmpeg -i "$f" -vf "movie=../watermark.png [watermark]; [in][watermark] overlay=main_w-overlay_w-5:main_h-overlay_h-5 [out]" -strict -2 -y out/"$f"; done
where 'watermark.png' is the image you want to use as a watermark. This will watermark everything in the current directory on the bottom right corner. Also create a directory named 'out' under this directory and it will put the watermarked files there.
__________________

You don't like my posts? Put me on ignore or fuck right off. I'll say what I want.

Last edited by signupdamnit; 06-25-2014 at 10:32 AM..
signupdamnit is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote