Log in

View Full Version : Logo removal: XLogo can't read bitmap?


JonF
16th November 2006, 18:39
I'm trying to remove a logo from a video clip. I found xlogo_25_dll_20030630 at http://www.avisynth.org/warpenterprises/. I built a bitmap mask according to the instructions at http://www.doom9.org/index.html?/capture/delogo.html. It's an 8-bit RGB BMP file.

I also grabbed remlogo and dekafka2 from http://forum.doom9.org/showthread.php?t=108643 .

This portion of my script looks like:

LoadPlugin("C:\Program Files\AviSynth 2.5\plugins\xlogo.dll")
Clip1 = avisource("E:\Working\JoGuestWebcam001.avi")
Clip1=Changefps(Clip1,10.629)
Clip1 = crop(Clip1,4,0,0,-48)
# Clip1=Xlogo(Clip1,"E:\Working\Logo1.bmp", 320,10)
Clip1=remlogo(Clip1,"E:\Working\Logo1.bmp", 320, 10)

This works as it stands, but the logo removal isn't very good. If I un-comment the Xlogo line and comment the remlogo line, then I get:

"X-Logo: Could not load bitmaps"

How can I get XLogo working?