Hi, how to add watermark to any video easily and painlessly?
I don't want to take too much time to learn because it's only a practical and business reason. The watermark can be very simple, serving the practical purpose only. Nothing fancy is needed.
Please let me know. Thank you so much!
+ Reply to Thread
Results 1 to 6 of 6
-
-
FFMpeg in conjunction with AVISynth works best for me. You can set the transparency to whatever you would like.
First decide what you want and where:
Then create your avisynth corresponding to those settings:
Code:v1 = Directshowsource(("C:\PathToVideo\birthday with audio.flv"),Pixel_type="RGB32").Lanczosresize(640,480) img1 = ImageSource("C:\PathToImage\TransparentBG.png", pixel_type="RGB32", fps=30.000, end=200).fadeio(28).converttoRGB32.LanczosResize(100,75) clip1 = v1.trim(0, -100) + Layer(v1.trim(100, -200), img1, "add", 255, 65, 80) + v1.trim(300, 0) Return clip1
AVISynth makes it possible to add more than one logo and you can have it show easily in a set number of frames
-
Last edited by kenny1999; 23rd Jun 2016 at 17:42. Reason: additional information
-
FFMpeg definitely has a learning curve to it but it does most everything. There are GUI front ends for it that may make it much easier. The above images are from one that I designed just for my own use because FFmpeg makes me go back and look things up that I have done before because my memory fails me at the time. LOL
Do you have a high need of watermarks on an ongoing basis or just need it for a project? If its a one time need, you can just copy a reference found here or on the internet and change the string to fit your need. If you have an ongoing need then a GUI front end would help.
Budman1 -
If there is only one logo then ffmpeg filter path will be simple and you may ask on this forum - someone for sure will be able to prepare script for you.
All you need is to provide clear definition of your problem and detailed informations about source, overlay etc.
I fully agree that ffmpeg is not intuitive and i fully agree that anyway it seems to be most useful tool to simple overlay as you can deal with whole process (decode -> overlay -> encode) at once.
Similar Threads
-
Any easy way to add watermark to any types of video?
By kenny1999 in forum Newbie / General discussionsReplies: 5Last Post: 22nd Nov 2014, 00:15 -
hi how to add captions/watermark to video??
By kennysiu in forum EditingReplies: 1Last Post: 20th Sep 2014, 21:10 -
Add logo or watermark quickly without affecting video file size or quality
By MGadAllah in forum EditingReplies: 29Last Post: 27th Jul 2014, 09:38 -
Video editor that can add date/time easily
By MrRalph in forum EditingReplies: 1Last Post: 17th Jul 2014, 09:51 -
How to add watermark? Please help
By lana in forum Newbie / General discussionsReplies: 2Last Post: 2nd Dec 2010, 04:18