Hello everyone.
I'm trying to remove a logo from the videos of some shows a friend recorded off a TV station. Unfortunately, these episodes are not available on DVD, so the only option is for me to use the videos she has. The problem is the logo is a solid color, which means I can't use one of the VirtualDub filters to restore the image behind it, like I could if it was a watermark. You can see the logo here to see what I'm talking about: http://i52.tinypic.com/24pw1l3.png
It's that orange thing in the top-right corner of the screen. I want these videos to be the highest quality possible, so I'm not interested in just using another filter like X Logo, which will blur it away. I want to actually remove it completely, if that's at all possible. My friend has copies of the video in which the logo appears in a different location, so I was wondering if there are any filters which let you replace that corner of the screen with the video source from another file.
My preference is to do this in VirtualDub, but if you know of any other (reasonably priced) programs that will let you do this, please let me know. Thank you in advance.
+ Reply to Thread
Results 1 to 3 of 3
-
-
AviSynth is free. It's a simple matter using AviSynth to crop one video and then overlay it onto the other in place of the logo. As far as I know there aren't any VDub filters that allow for similar things.
http://avisynth.org/mediawiki/Overlay -
You'll find two different caps usually have very different colors. Getting the colors to match will be the hard part. Here's a sample AviSynth script using Overlay() with an alpha mask to feather the edges:
ImageSource("24pw1l3.png")
over=ImageSource("24pw1l3.png").Crop(552,200,48,40 ).RGBAdjust(rb=20,gb=20,bb=20)
mask=ImageSource("mask.png")
Overlay(over,550,34,mask)
Since I don't have an image of the second video I'm using the same image as the source for the overlay. I cropped the overlay image down to a small section of the door frame, down below the logo. You would adjust this crop to match the location of the logo in your overlay video.
I adjusted the colors of the overlay to make it stand out in the final result. You'll probably have to adjust the colors to make the colors of the overlay match the working video.
I created an alpha mask the size of the overlay (48x40):
In an alpha mask, black areas will be transparent, white areas will be opaque and shades of gray somewhere in between. The darker pixel in the mask the more transparent the overlay image will be.
Finally, the overlay is overlaid onto the first video using the alpha mask:
The same script, minus the color adjustment:
As a reference, the original image with the logo:
Last edited by jagabo; 6th Jun 2011 at 09:07.
Similar Threads
-
Can't insert a source file into Eac3to and More GUI v.1.10.01
By mahogany in forum Newbie / General discussionsReplies: 0Last Post: 3rd Aug 2010, 17:48 -
Directshow Source Filter Issue
By kakskulkarni in forum ProgrammingReplies: 0Last Post: 30th Jun 2010, 18:25 -
VirtualDub + Crop Filter adds a black border in right corner of video?
By CactusMan in forum Newbie / General discussionsReplies: 5Last Post: 17th Jan 2010, 08:24 -
Need filter help encoding the same as a guy did from the same dvd source
By starlight2000 in forum Video ConversionReplies: 10Last Post: 6th Sep 2009, 12:43 -
How to Paste Insert frames from Virtualdub (Snapshot source frame) ?
By Bilskate in forum EditingReplies: 1Last Post: 18th Aug 2008, 15:21