Xlogo
download to:
http://www.avisynth.org/warpenterprises/Direct download:
http://www.avisynth.org/warpenterprises/files/xlogo_25_dll_20030630.zip裡面有個解說.txt
Sample usage:
Use "c:/logo_0.bmp" at x=300, y=200, alpha=180 with all others default:
LoadPlugin("c:/avisynth/xlogo.dll")
AviSource("c:/foo.avi")
Xlogo("c:/logo_0.bmp",300,200,180)
如果只想出現在 #100~#1000 frame
LoadPlugin("c:/avisynth/xlogo.dll")
c=AviSource("c:/foo.avi")
return c.trim(0,99) ++ c.trim(100,1000).Xlogo("c:/logo_0.bmp",300,200,180) ++ c.trim(1001,0)