I need a software that watermark without quality loss or increase size
Sent from my P4 using Tapatalk
+ Reply to Thread
Results 1 to 7 of 7
-
-
Adding a watermark means reencoding. Reencoding means quality loss (although maybe not much). The only way to get what you want (short of making a huge lossless file) would be to add this watermark as a subtitle.
-
-
I don't add watermarks, I remove them. Defacing videos with watermarks and logos is a stupid idea.
-
You need to hire someone that will wrote such software for you - you can modify encoded data of video not video (data can be modified in spatial and time domain) usually this is how real watermarking/fingerprinting works.
-
If you must put a logo on your video and you are familiar with Avisynth, it allows multiple logos at different times and overlapping or not.
Script setup matching the above:
Code:v1 = Directshowsource("C:\Users\Bud\Desktop\aCommercial HDCNVRTED.flv").ConvertToRGB32.Lanczosresize(854, 480) img1 = ImageSource("C:\Users\Bud\Desktop\TransparentBG.png", pixel_type="RGB32", fps=23.976, end=100).converttoRGB32.LanczosResize(100,70) clip1 = v1.trim(0, -10) ++ v1.trim(10, -90).Overlay(img1, 356, 48,Opacity=1.0, img1.ShowAlpha()) \ ++ v1.trim(100, 0) return clip1
The above image has a transparent background and the script has all necessary items to allow this. -
Similar Threads
-
Minimizing quality loss?
By xtreme1699 in forum Video ConversionReplies: 16Last Post: 13th Jul 2015, 02:59 -
Add logo or watermark quickly without affecting video file size or quality
By MGadAllah in forum EditingReplies: 29Last Post: 27th Jul 2014, 09:38 -
Picture quality loss
By eibbed in forum Newbie / General discussionsReplies: 14Last Post: 29th May 2013, 21:27 -
Software to edit videos and add watermark
By fernandoch in forum Newbie / General discussionsReplies: 4Last Post: 2nd Jan 2013, 05:34 -
From 16 to 8 bit without quality loss
By norcim in forum Newbie / General discussionsReplies: 22Last Post: 14th Dec 2012, 12:06