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.
		
			+ Reply to Thread
			
		
		
		
			
	
	
				Results 1 to 15 of 15
			
		- 
	
- 
	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. 
- 
	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. 
- 
	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? 
- 
	I think it was this: 
 
 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.Code:AviSource("The 1997 Winston.avi") Crop(160,0,-160,-0) QTGMC(InputType=2) RemoveDirtMC(20, false)
- 
	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. 
- 
	I also made a version that only applies the RemoveDirt() to the most saturated parts of the picture: 
 
 You'll probably have to play around with the threshold and such.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
- 
	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(). 
- 
	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? 
- 
	Instead of. 
 
 No, both are motion interpolated frame rate converters. In this case producing a new frame in-between the existing frames, doubling the frame rate.
 
 Yes, one or the other. Whichever works best. They both have lots of options for tuning their behavior.
 
 Here's the video with Interframe:Last edited by jagabo; 25th Jan 2023 at 10:42. 
- 
	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. 
Similar Threads
- 
  Horizontal noise bars - what are they called, and how to remove?By johnmeyer in forum RestorationReplies: 19Last Post: 19th Apr 2021, 11:16
- 
  Freemake Video Converter HashBy Secoast in forum Video ConversionReplies: 0Last Post: 12th Dec 2019, 09:44
- 
  Download stream encrypted with EXT-X-HASHBy vanikem in forum Video Streaming DownloadingReplies: 6Last Post: 1st Oct 2019, 23:20
- 
  Please help download video m3u8 with EXT-X-HASHBy zorovhs in forum Video Streaming DownloadingReplies: 1Last Post: 1st Oct 2019, 21:51
- 
  How to get rid of streaks on edges of video?By digicube in forum RestorationReplies: 5Last Post: 22nd Apr 2018, 16:54


 
		
		 View Profile
				View Profile
			 View Forum Posts
				View Forum Posts
			 Private Message
				Private Message
			 
 
			
			

 Quote
 Quote 
 
			
			 
			