Hi All,
I'm sure this questions has been asked, but on NTSC video, how do I get rid/trim off the junk at the bottom of the video when converted from DV source? I want to add it to my AVISYNTH and VirtualDub script? My video is 720x480.
Thanks.
Matt
+ Reply to Thread
Results 1 to 25 of 25
-
-
Soopafresh's
Code:crop(0,0,-0,-16)#Or try 32,48, etc Spline36Resize(720,480)
Code:crop(0,0,-0,-16) addborders(0, 0, 0, 16)
-
Ha ha! I didn't know about that one. It should be faster than crop() and addborders().
-
Originally Posted by andie41
Thanks!
Matt -
You can open the scrip tin virtualdub, but I don't think that is what you are asking.
In virtualdub, add a Null Transform, then open Cropping and remove the noise. Add a Resize filter, and set it equal to 720 x (vertical res - cropped amount), then set the letterboxing to 720 x vertical res - where vertical res is whatever your original resolution was. This is crop off the noise then add back borders.Read my blog here.
-
You can add cropping to the Resize filter. Cropping will take place before the resize.
-
Originally Posted by guns1inger
Also is this the correct order? NeatVideo is a noise filter. I'm not quite sure which order is best for my NTSC 720x480 interlaced TFF video. Any suggestions?
Thanks.
Matt -
Neat video is one of the slowest filters. It's best to give it as little work to do as possible (ie, give it the smallest frame size). So, from that perspective, you have the filters in the best order for what you're doing. But you have several other problems.
If your video is interlaced you have to be careful not to disturb the two fields.
If I remember correctly Neat Video is not interlace aware although it usually works fairly well with interlaced video. Just be aware that it could introduce problems. You could avoid those problems by using the Deinterlace filter with the Unfold Fields Side-by-Side option before Neat Video and the Deinteralce again with the Fold Side-by-Side Fields Together option afterwards. This isn't perfect either but will usually work better.
I can't tell exactly what you're doing with the Resize filter. You should not resize the 720x470 frame to any other size using the top part of the Resize dialog. Doing so will mess up the fields. If you are resizing to 720x470 (ie, the top part of the resize filter is set to 720x470) and letterboxing to bring the frame back up to 702x480 you will reverse the field order of the video. This is because 5 scanlines will be added to the top of the video (and the bottom), shifting the remaining scanlines down by 5 lines. Even numbered scanlines (one field) will become odd numbered scanlines (the other field) and vice versa. If you really want to crop then letterbox, you should crop by a multiple of 4 (crop by 8 or 12 instead of 10) so that the field order doesn't change. Or at least be aware you changed the field order and handle it appropriately later.
In a case like this I would would use a filter chain like this:
Deinterlace -- unfold fields side-by-side
Neat Video
Deinterlace -- fold side-by-side fields together
Fill (overwrite bottom 10 lines with black) -
Originally Posted by jagabo
As far as deinterlace goes. NeatVideo 2.0 I believe I have it configured to deal with Interlaced. Do I still have to seperate the fields?
Thanks!
Matt -
Ah, I see Neat Video has added an interlace option (I only have the 1.0 demo). So you don't need to unfold/fold as I indicated earlier.
Resizing from 720x470 to 720x480 as you're doing it will destroy the video. The two fields will become irreversibly mixed.
By the way, there's no point in enabling the expand and letterbox option if you're already resizing to the final size. -
Originally Posted by jagabo
Matt -
Originally Posted by guns1inger
I wouldn't have seen that -
Originally Posted by guns1inger
Originally Posted by guns1inger -
Fair call. Best option then is still to do the cropping/borders in avisynth, then load it into virtualdub to run NeatVideo over it. Teh wait 24 hours.
Read my blog here.
-
Or crop 8 or 12 scanlines (instead of 10) so the image is shifted down by an even number of scanlines.
Or skip the crop and resize and just overwrite the bottom 10 scanlines with black with the Fill fileter. -
Originally Posted by jagabo
Matt -
The fill filter simply overwrites parts of the image with the selected fill color. It doesn't change anything else about the image. So nothing you do with it will effect the field order or "contaminate" the fields.
A frame of interlaced video contains two half pictures. One half picture is contained in all the even scanlines, one in all the odd scanlines. When these are displayed on an interlaced device one field is displayed at a time. So it's important to keep track of which field is to be displayed first (the field order), and to keep the two fields from comingling, blending together, or otherwise interfering with each other.
Similar Threads
-
please list the virtualdub filters to remove vhs tape video noise
By perfection in forum Newbie / General discussionsReplies: 6Last Post: 7th Jan 2020, 13:45 -
How to remove noise from my HD video
By ITW in forum RestorationReplies: 18Last Post: 26th Jan 2011, 13:24 -
Cleaning Up/Remove video noise
By Soixante in forum Video ConversionReplies: 5Last Post: 5th Apr 2010, 19:34 -
how to remove heavy noise in video?
By Driftking978 in forum Newbie / General discussionsReplies: 5Last Post: 26th May 2008, 05:24 -
Remove noise from VHS bottom border
By roglopes in forum Capturing and VCRReplies: 10Last Post: 21st Jun 2007, 15:36