Hello,
This is kind of a hypothetical and a question at the same time. Say:
1. A person has a TV show with logos at the bottom that they want to remove (I know, it's almost impossible to do without making the video look smudgey),
2. The person had two versions of the same show. One with the logos only on the bottom, and one with logos only on the top,
3. Wouldn't it be neat if a person could transpose those two videos together, and sync them up, so in the end there are no logos. In other words, overlay the top half of the one without the top logos with the one without the bottom logos.
Would that work???????
Thanks!!!
Chris
+ Reply to Thread
Results 1 to 12 of 12
-
-
Hi Pijetro,
What's odd about it? The fact that this is a different way of trying to remove logos, or the fact that I have two different video sources with logos in different places?
Thanks!
Chris -
as long as it's the exact same video it should work without a problem. hopefully both are in the digital domain and one is not slightly slower than the other. provided this is the case you should easily be able to sync them up, strip away one of the audio tracks..then use the top of one and the bottom of the other..i believe virtualdub would do this...
-
Wow. So my next step is to try to figure out which program to use to do the job. If I have to spend a lot of time getting to know a program, I hope will do the job. Otherwise I'd just be wasting a ton of time. You know? So virtualdub and AVISynth ????? I am not familiar with either of them. So I don't know which way to go.
-
If you're not familiar with scripting, I'd suggest the Vdub and see how it goes.
An easier way would be just to cover the existing logo with another. -
yep...there was a guy who actually did sort of what you are wanting to do in virtualdub but he split the screen down the middle vertically. He basically wanted to make a video of him talking to himself. So he stationed a tripod somewhere..shot both takes then combined the left and right side together.
-
@christopheramos
fact that I have two different video sources with logos in different places?
So virtualdub and AVISynth ????? I am not familiar with either of them -
Well, I have DVD Lab Pro, but I'm still trying to learn the very basics of it. I'm still a newbie, unfortunately. Would DVD Lab Pro do the trick ????
-
There is a program called VideoEditMagic that might do what you want. You would need to put a blue screen on the top of one video and then overlay it on the other video and use chroma key view through the blue screen to the bottom video.
There is a 30 day free trial...
http://www.deskshare.com/vem.aspx
and a support forum...
http://www.deskshare.com/Forums/ShowForum.aspx?ForumID=12
I used an older version for a while and it had alot of useful functions like joining different file types and resolutions to the same project. -
christopheramos wrote:
Well, I have DVD Lab Pro, but I'm still trying to learn the very basics of it.
Unfortunately, that won't help you.
You still need to use an .AVI editor to do this task... -
It's a pretty simple matter when using AviSynth to frameserve to an encoder. Say you have one video with the logo at the top, and another with a "clean" top. You want to crop away the bottom part of the second one and then use it to covers the logo of the first one.
If both are AVI:
main=avisource("C"\Path/\o\Video1.avi")
pip=avisource("C"\Path/\o\Video2.avi").Crop(0,0,0,400)#Adjust if necessary
Layer(main,pip,"add",255,0,0)#0,0 are x,y coordinates. Adjust if necessary)
I called it pip because the effect is similar to a Picture-In-Picture. If they're MPEG-2s, then you make D2Vs with DGIndex first and use MPEG2Source instead.
http://www.avisynth.org/Layer
Similar Threads
-
mkvmerge is not splitting videos to dvd5 size+ rotating videos+resizing
By rocketman122 in forum EditingReplies: 2Last Post: 24th Aug 2010, 08:12 -
Syncing Audio files to eachother possible?
By RickyPinxt in forum AudioReplies: 1Last Post: 6th Apr 2010, 00:37 -
Conversion usiing VirtualDub - 720 X 560 videos into 640 X 360 videos
By candyman9999 in forum Video ConversionReplies: 1Last Post: 13th Jan 2009, 22:13 -
where to obtain overlay videos with alpha layer
By perfection in forum EditingReplies: 1Last Post: 12th Nov 2008, 23:41 -
Need to overlay an MP3 in one of my videos
By Kingnautilus in forum Newbie / General discussionsReplies: 5Last Post: 9th Feb 2008, 00:08