VideoHelp Forum




Closed Thread
Results 1 to 4 of 4
  1. Originally Posted by cyb3rlord View Post
    whoaaa ..thanks a lot buddy..your code worked perfectly..
    i just add the x and y int in overlay and it was perfect...
    u r great man!!\m/..thanks again..
    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

  2. Member
    Join Date
    Oct 2004
    Location
    United States
    Search PM
    don't tase me bro! you do need to specify the entire path. and coherent sentences/complete words will also help you in getting an answer to the rest of your questions.

  3. Originally Posted by anandzxc View Post
    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
    That filter is used to apply the logo to only some frames, not the entire video.

    Originally Posted by anandzxc View Post
    a1=AVISource("video.avi")---no need to give full path ah?
    If the video is in the same folder as the AVS script you don't need to specify the full path.

    Originally Posted by anandzxc View Post
    a2=ImageSource("logo.png",pixel_type="RGB32")----just we can post copy this script to all pic else its 4r this logo 1ly?
    That is creating a second video from logo.png.

    Originally Posted by anandzxc View Post
    a3=Overlay(a1,a2,mask=a2.ShowAlpha())
    That is creating a third video with the logo overlaid onto the first video.

    Originally Posted by anandzxc View Post
    ReplaceFramesSimple(a1, a3, mappings="[0 299][53999 54299]")---wht is these funs and numbers?
    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.




Similar Threads

Visit our sponsor! Try DVDFab and backup Blu-rays!