View Single Post
Old 2009-12-26, 15:54   Link #946
GipFace
Senior Member
 
Join Date: Nov 2003
Code:
a = imagesource("creditroll.png", pixel_type="RGB32", end=100)
b = AviSource("work.avi")
animate(100,100+a.framecount-1,"insertsign",b,a,100,100+a.framecount-1,101,102,b,a,100,100+a.framecount-1,103,104)
Sorry! This doesn't work. I modded the insertsign function, but avisynth is complaining about invalid arguments on the animate line. Could you be more specific?

you're probably better off with trim()'s and the plain old overlay function
Like this?
Code:
a1=AVISource("work.avi")
a2=ImageSource("creditroll.png")
a3=ImageSource("creditroll.png",pixel_type="RGB32").ShowAlpha(pixel_type="RGB32")
Overlay(a1,a2,mask=a3)
See, I do have some idea, but you'll need to teach me, since that just places the picture and doesn't move it around at all.
GipFace is offline   Reply With Quote