VideoHelp Forum
+ Reply to Thread
Results 1 to 15 of 15
Thread
  1. Hi all, I'm uncertain as to the technical term of what I'm seeing on this footage and that makes it difficult to find a filter to repair the problem. It looks like tiny two inch long streaks that pop up randomly and give a jitter or sense of movement on an otherwise static picture. The video is actually in pretty good quality other than this issue. It is very visible if you focus on the Monte Carlo on the front of Dale Earnhardt's car. An explanation of what I'm seeing along with a script to repair it would be a big help. I did have luck repairing it with Topaz using their reduce jittery motions filter. However, this filter is on or off with no settings for strength and while it helped with this specific issue it caused a lot of other issues such as blurring the entire frame at any camera scene change. This leads me to believe the problem is best fixed in avisynth. Thanks in advance for any help.
    Image Attached Files
    Quote Quote  
  2. The footage looks fine to me. I don't see anything that needs fixing. Yes, there is an infinitesimal amount of noise in the letter "M" on the front bumper of the car and if that is what you're talking about, I'd just live with it and enjoy the footage. It will be very hard to repair without introducing problems that are more severe than what you fix.
    Quote Quote  
  3. Poor deinterlacing, overshoots at high contrast edges, flickery 30p... You can alleviate the problems a bit in software. But a new cap with a better VCR and proper capture device could do better.
    Image Attached Files
    Quote Quote  
  4. Unfortunately, I don't have untouched original footage. This is the best quality version of this race I could find and is all I have to work with. What can be done in software to help?
    Quote Quote  
  5. Jagabo, could you share the script you used?
    Quote Quote  
  6. why's the video resized to 720p
    Quote Quote  
  7. Originally Posted by SupraGSX View Post
    Jagabo, could you share the script you used?
    I think it was this:

    Code:
    AviSource("The 1997 Winston.avi") 
    Crop(160,0,-160,-0)
    QTGMC(InputType=2)
    RemoveDirtMC(20, false)
    QTGMC was used to reduce some of the deinterlacing artifacts (and some of the overshoot streaks) and RemoveDirtMC to remove the bulk of the overshoot streaks.
    Quote Quote  
  8. Thanks Jag. Just to clarify I haven't touched the footage it was uploaded on nascar's YouTube channel. There was actually also a 720p60 version and upon downloading that version it was just a version that had every frame repeated, so this is the one I went with. I like to clean up the audio and video and archive them because any day nascar could decide to pull them down and while these aren't perfect they are miles better quality than anything else available. Races are 3-4 hours long so it's not like any were recorded in sp mode. Gotta take what you can and try to make it as best as possible.
    Quote Quote  
  9. I also made a version that only applies the RemoveDirt() to the most saturated parts of the picture:

    Code:
    ##########################################################################
    #
    # Saturation, returns mask, 0 to 180
    #
    ##########################################################################
    
    
    function SaturationMask(clip c)
    {
        U = UtoY(c)
        V = VtoY(c)
        mt_lutxy(U, V, expr="x 128 - abs 2 * dup *    y 128 - abs 2 * dup *   + 0.5 ^")
        PointResize(c.width, c.height)
    }
    
    ##########################################################################
    
    
    AviSource("The 1997 Winston.avi") 
    Crop(160,0,-160,-0)
    
    QTGMC(InputType=2)
    satmask = SaturationMask().ColorYUV(gain_y=1000, off_y=-100).mt_expand().mt_expand().mt_expand().mt_expand().mt_expand().mt_expand()
    Overlay(last, RemoveDirtMC(30, false), mask=satmask)
    
    # FrameRateConverter() # optional double frame rate, motion interpolated
    You'll probably have to play around with the threshold and such.
    Quote Quote  
  10. Thanks again jagabo, I really appreciate the time.
    Quote Quote  
  11. With racing video panning shots will flicker a lot at 30p. Doubling the frame rate with motion interpolation will eliminate that flicker. Unfortunately, it may sometimes lead to other distortions. But you may find the tradeoff worth it. I found that FrameRateConverter(BlkSize=24) worked better than the default for this particular clip. Also using InterFrame(cores=4) worked better than just FrameRateConverter().
    Quote Quote  
  12. So would I use use interframe before or after framerateconverter? My understanding is interframe removes frames and I would be setting framerateconverter to double them correct? Or are you suggesting to pick one or the other?
    Quote Quote  
  13. Originally Posted by SupraGSX View Post
    So would I use use interframe before or after framerateconverter?
    Instead of.

    Originally Posted by SupraGSX View Post
    My understanding is interframe removes frames and I would be setting framerateconverter to double them correct?
    No, both are motion interpolated frame rate converters. In this case producing a new frame in-between the existing frames, doubling the frame rate.

    Originally Posted by SupraGSX View Post
    Or are you suggesting to pick one or the other?
    Yes, one or the other. Whichever works best. They both have lots of options for tuning their behavior.

    Here's the video with Interframe:
    Image Attached Files
    Last edited by jagabo; 25th Jan 2023 at 09:42.
    Quote Quote  
  14. Jag, I just had a chance to play with this some more and you did amazing job. The viewability is much improved without all the shimmering. Thank you.
    Quote Quote  
  15. Glad it worked out for you.
    Quote Quote  



Similar Threads

Visit our sponsor! Try DVDFab and backup Blu-rays!