1.Bro can u explain wht plungin is used for what?
2. if i have MP4,MKV,AVI what plugin to use and where to use?
3. post the full coding 4r making watermark in pirticular sec ?
4.
cyb3rlord
LoadPlugin("C:\Program Files\AviSynth 2.5\plugins\RemapFrames\RemapFrames.dll") -------why this fun is used and weather i can use this in which place in script
a1=AVISource("video.avi")---no need to give full path ah?
a2=ImageSource("logo.png",pixel_type="RGB32")----just we can post copy this script to all pic else its 4r this logo 1ly?
a3=Overlay(a1,a2,mask=a2.ShowAlpha())
ReplaceFramesSimple(a1, a3, mappings="[0 299][53999 54299]")---wht is these funs and numbers?
I dont know what both r duscussing?https://forum.videohelp.com/threads/315776-Adding-Watermark-To-Video-using-Megui
Closed Thread
Results 1 to 4 of 4
-
-
That filter is used to apply the logo to only some frames, not the entire video.
If the video is in the same folder as the AVS script you don't need to specify the full path.
That is creating a second video from logo.png.
That is creating a third video with the logo overlaid onto the first video.
I don't know that filter but it's probably specifying which parts of the video should come from a1 (the original) and a3 (the one with the logo). My guess is frames 0-299 and 35999-54299 will get the logo, the rest (300-35998, and any frames beyond 54299) doesn't.
If you want to apply your logo to all frames you don't need any of the RemapFrames and ReplaceFrames lines:
a1=AVISource("video.avi")
a2=ImageSource("logo.png",pixel_type="RGB32")
Overlay(a1,a2,mask=a2.ShowAlpha())Last edited by jagabo; 23rd Jun 2010 at 10:44.
-
Please stop cross post. One similar thread is ENOUGH. https://forum.videohelp.com/threads/315776-Adding-Watermark-To-Video-using-Megui?p=1996...65#post1996765
Similar Threads
-
Adding watermark to video
By Shaorin in forum Newbie / General discussionsReplies: 2Last Post: 29th Nov 2010, 09:08 -
adding watermark as a subtitle
By zammil in forum SubtitleReplies: 8Last Post: 20th Nov 2010, 00:45 -
adding watermark to videos
By zammil in forum Newbie / General discussionsReplies: 7Last Post: 16th Nov 2010, 22:19 -
Adding watermark to DVD
By carlmart in forum Authoring (DVD)Replies: 8Last Post: 3rd Aug 2010, 12:28 -
adding watermark on video
By 3390 in forum Newbie / General discussionsReplies: 5Last Post: 27th Feb 2008, 05:13