im trying to load a virtualdubplugin into my avisynth script, but cant figure out how. I'm trying to load smart smoother, or smooth1.1 and it wont work. any suggestions? I dont want to use the Avisynth version of smarsmoother because i dont feel it does as good of a job as the virtualdub version.
		
			+ Reply to Thread
			
		
		
		
			
	
	
				Results 1 to 6 of 6
			
		- 
	Last edited by mmbwdpnz; 4th Nov 2012 at 19:41. 
- 
	Something like this: 
 
 The hard part is determining all the arguments and the order that need to be passed. Use Video -> Save Processing Settings to create a VCF file, then open that with Notepad to see the arguments.Code:LoadVirtualDubPlugin("g:\Program files\VirtualDub\plugins\deflick.vdf","DeFlick") AviSource("source.avi") ConvertToRGB32() #DeFlick(window size, softening, interlaced, scene change threshold, show scene change) DeFlick(8, 0, 0, 10, 0) ConvertToYV12() #if necessary
 
 Which smart smoother are you trying to use? There is more than one with that name. I have Smart Smoother IQ (0.6) and Smart Smoother HiQuality (2.11).
- 
	Like this: 
 
 Be sure to modify the path to smooth.vdf:Code:LoadVirtualDubPlugin("g:\Program files\VirtualDub\plugins\smooth.vdf","SmartSmooth") AviSource("source.avi") ConvertToRGB32() SmartSmooth(5, 25, 0) # diameter, threshold, interlaced ConvertToYV12() # optional, back to YV12
- 
	ok so do i save this as a .avsi file, or do i just put this into my mpeg2source script? 
- 
	Put all the commands, except the AviSource() line, in your mpeg2source() script. 
Similar Threads
- 
  Website will never load, but I know it is upBy Akhet in forum Off topicReplies: 12Last Post: 21st Jan 2012, 11:04
- 
  SVCD2DVD 2.5 Will Not LoadBy Rower4VT in forum SVCD2DVD & VOB2MPGReplies: 1Last Post: 2nd Sep 2009, 14:25
- 
  DVD does not loadBy joelson in forum Newbie / General discussionsReplies: 4Last Post: 26th Dec 2008, 10:23
- 
  Does this site load for you?By lordsmurf in forum Off topicReplies: 3Last Post: 4th Dec 2008, 11:56
- 
  HDTV2DVD does not load up TS-fileBy feilofix in forum Authoring (DVD)Replies: 2Last Post: 12th Nov 2008, 14:25


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

 Quote
 Quote