PDA

View Full Version : Need help implimenting logo.


golem
8th February 2004, 01:32
I'm getting frustrated at not being able to properly work a logo option into my scripting. For the last year I have been using Avisynth's internal filters along with those written exclusively for it. Along with this I have been adding my logo filter (Donald Graft's v1.4) via VirtualDub's filter options. Doing this requires I use the "full processing mode" instead of "fast recompress".

I have tried to understand the process of "LoadVirtualdubPlugin" and/or Wilbert's "vdub_filters.avsi" (note - links on associated page is no longer valid (http://www.avisynth.org/index.php?page=VirtualDub_I)). I believe I've read every post back through 2000 along with all tutorials and instructions but am still :confused:.

I currently add a static 60x15 white on black bitmap that is x2 y2, alpha blended 55, transparent enabled 0,0,0,0. If someone could be so kind as to hold my hand and give me some true direction it would be greatly appreciated.

Regards,
Golem

Wilbert
8th February 2004, 01:40
I have tried to understand the process of "LoadVirtualdubPlugin" and/or Wilbert's "vdub_filters.avsi" (note - links on associated page is no longer valid).
Thanks. I will notify Richard. Anyway just copy and past the stuff in notepad and save it to vdub_filters.avsi.

Better yet, install AviSynth v2.54 and use Overlay (http://www.avisynth.org/index.php?page=Overlay). That way, you don't need to convert to RGB.

Richard Berg
8th February 2004, 20:28
Those files were not saved from the old server, so I've removed the links and added instructions for copying and saving *.avsi files.

lamola2003
10th February 2004, 19:55
I need put a logo into my clip.
I have a clip: Orange.avi (avi-dv)
I have a file: logo.bmp (resolution: 720x576.
My script is wrong.
-----------------------
file="D:\orange.avi"
clip1=AviSource(file)
clip2=ImageReader("d:logo.bmp", 0, 0, 24, false)
Overlay(clip1, clip2, mode="blend", opacity= 0.5)
------------------------

Can you help me?
Thanks
Lamola

sh0dan
10th February 2004, 22:43
@lamola2003: What happends? (You might need a backspace in the ImageReader filename - ie: "d:\logo.bmp"

lamola2003
11th February 2004, 17:08
Hello Shodan. Thank for your excelent program Avyshint.
My file "logo.bmp" is a picture all black with a circle yellow in a corner.
When overlay the two images (orange.avi and logo.bmp)it result a image darker. if i put the opacity=1.0 it result a image all black.
I want put a logo but How do?.
Thanks
lamola