Log in

View Full Version : Logo Filter?


willlangford
12th November 2002, 06:08
Is there a filter for adding logos and such?

thanks,

~Will

SansGrip
12th November 2002, 06:15
Is there a filter for adding logos and such?

One option is to use a plugin that can read bitmaps (I believe it's called ImageSequence or something like that) and then Layer() to superimpose.

Bear in mind, though, that superimposed logos bring great joy to Beelzebub :devil:.

SILICON
12th November 2002, 14:38
I don´t know any logo filter for avisysnth.

Do one logo plug-in for virtual-dub. You can use it, bur to be slow and quality worse.

¿can anybody codec one in YUY2?
I suggest create one aplication for chage the logo.bmp to logo.yuv2. It speed a lot the filter.

matrix
12th November 2002, 16:42
This works fine here,
LoadPlugin("C:\Movie\av_plugins\mpeg2dec.dll")
Mpeg2Source("C:\Movie\menu.d2v").BilinearResize(480,480)
import("C:\Movie\VirtualDub-1_4_10\plugins\vdub_filters.avs")
ConvertToRGB()
VD_logo(0, 0, 255, true, 255, 255, 255, 0, VirtualDub_plugin_directory+"\1_4.bmp", false, 0, 600, 0, 0, 600, 0)
ConvertToYUY2()
You need this though. (vdub_filters.avs) You'll find it here (http://www.avisynth.org/index.php?page=VirtualDub_I)