Total nooby Avisynth question. I'm trying to add an image at a set point in a video then remove it at a set point.
Eg. Video starts, then plays for 100 frames, then image is visible for 200 frames in top right corner of initial video, then disappears for remaining 100 frame of the initial video.
I know its something like the Layer or Overlay function but I just cant figure out how to apply the image at a set point rather than just the start of the initial video.
So for I've got this.
clip_black = BlankClip(2000, 400, 400)
clip_team_one = ImageSource("C:\Users\Testing\Desktop\fun.png", fps = 29.97, end = 300).fadeio(28).converttoRGB32
clip1 = Layer(clip_black, clip_team_one, "add", 257 , 30, 20)
clip1