I want to know if it is possible, in avisynth, to apply a denoise filter for minimal noise, only from frame 650 to 1610, and to apply another denoise filter for medium noise, skipping all frames between 650 and 1610.
Also, a short avisynth script example would be excelent.
		
			+ Reply to Thread
			
		
		
		
			
	
	
				Results 1 to 2 of 2
			
		- 
	
- 
	Several ways to do it, but one of the easiest is to use trim() 
 
 Other ways include remapframes() (so you remap frames from a heavy filtered version into light filtered) , clipclop, ApplyRange() - apply filter to range of framesCode:a=whateversource("video.ext") a someminimalfilter() minimal=last a mediumfilter() medium=last medium.trim(0,649) ++ minimal.trim(650,1610) ++ medium.trim(1611,0)
Similar Threads
- 
  How do I debug/extract i-frame p-frame and b-frame?By jwbrasil2 in forum ProgrammingReplies: 0Last Post: 20th Nov 2011, 13:24
- 
  vcl file frame serve for avisynthBy norlane in forum Blu-ray RippingReplies: 2Last Post: 5th Feb 2011, 02:20
- 
  Play an MTS file frame by frame, displaying timecode or frame numberBy SeánB in forum Software PlayingReplies: 5Last Post: 5th Oct 2010, 17:26
- 
  AviSynth smoothers - In proportion to frame size, or is it?By Gew in forum Newbie / General discussionsReplies: 0Last Post: 22nd Jul 2009, 14:53
- 
  How to shifting an area of video frame in avisynth?By djnice in forum Video ConversionReplies: 6Last Post: 31st Mar 2008, 01:24


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

 Quote
 Quote