Instant Watermark Creator (Willing to hire)

Status
Not open for further replies.

dschus

New member
Feb 2, 2008
528
8
0
South Dakota
Is there any server side script that could be made where I could upload an .avi or .mov and it would automatically watermark it for me? This would save me tons and tons of time.

I am willing to hire someone who can do this.
 


If you have a linux server you can compile and install ffmpeg then use the following command to put a line of text on your videos, you could use it in a php script and have it go through a batch of videos as well

Code:
ffmpeg -i /var/www/clip.avi -vhook “/usr/lib/vhook/drawtext.so -f /usr/share/fonts/corefonts/comic.ttf -x 5 -y 5 -t YourSite.com” /var/www/out.avi

Or you could replace the text

Code:
/usr/share/fonts/corefonts/comic.ttf -x 5 -y 5 -t YourSite.com

With an image to have watermarked instead.
 
Is there anything that works for watermarking .mkv (x264) files? I haven't seen any around yet.
 
Status
Not open for further replies.