snowcrash
2nd March 2005, 21:34
I've been using the following to insert a logo in the clips I encode:
LogoMask=Imagereader("I:\Videos\blogo_mask.png")
Logo = Imagereader("I:\Videos\blogo.png")
Overlay(logo, x=(Width() - logo.Width() - 3), y=(Height() - logo.Height() - 3), mask=LogoMask, opacity=.6)
This has always worked fine with Avisynth 2.5.0, inserting my logo in the bottom right corner. Up until just recently when I upgraded Avisynth to 2.5.5 and now my logo is inserted upside-down. I also tried the latest 2.5.6 Beta2 and I get the same thing. If I go back to the old 2.5.0 avisynth.dll, it works properly again.
I searched and didn't see anyone else reporting this which is surprising to me. Isn't there anyone else using overlay()? This seems to be a clear bug to me, unless I'm doing something stupid. Anyway, I have a program installed that needs Avisynth 2.5.5 so for now i'm going to have to just flip the orientation of my logo graphic I guess. Developers, I hope you can fix this. Thanks.
LogoMask=Imagereader("I:\Videos\blogo_mask.png")
Logo = Imagereader("I:\Videos\blogo.png")
Overlay(logo, x=(Width() - logo.Width() - 3), y=(Height() - logo.Height() - 3), mask=LogoMask, opacity=.6)
This has always worked fine with Avisynth 2.5.0, inserting my logo in the bottom right corner. Up until just recently when I upgraded Avisynth to 2.5.5 and now my logo is inserted upside-down. I also tried the latest 2.5.6 Beta2 and I get the same thing. If I go back to the old 2.5.0 avisynth.dll, it works properly again.
I searched and didn't see anyone else reporting this which is surprising to me. Isn't there anyone else using overlay()? This seems to be a clear bug to me, unless I'm doing something stupid. Anyway, I have a program installed that needs Avisynth 2.5.5 so for now i'm going to have to just flip the orientation of my logo graphic I guess. Developers, I hope you can fix this. Thanks.