![]() |
Avisynth - how to Load Filter?
I'm very sorry for asking SO MANY question but i just have this one last one. How do you load other plugins into fit cd for the avs file? When i did it and tried to open it in TMPG, it wouldn't open
|
Look at the first three lines of my .avs script as a sample.
See that I load the plugins from my c:\encoding directory Here's the script: LoadPlugin("C:\encoding\MPEG2DEC.dll") LoadPlugin("C:\encoding\nomosmooth.dll") LoadPlugin("C:\encoding\blockbuster.dll") mpeg2source("K:\TEST\VIDEO_TS\movie.d2v") BilinearResize(336,192,45,0,630,480) NoMoSmooth() ######## Auto Strength, proportional strength depending on resolution ##### ## Remove only one "#" on front of the resolution that matches your encoding. BB_Resolution = 352*240 #BB_Resolution = 352*480 #BB_Resolution = 528*480 #BB_Resolution = 544*480 #BB_Resolution = 704*480 BB_StrengthConstant = 352 * 240 * 20 # Base strength StrengthValue = round (BB_StrengthConstant / BB_Resolution) Blockbuster( method="noise", detail_min=1, detail_max=10, lv=1 ) # Apply noise if complexity is <= 10%. Blockbuster( method="sharpen", detail_min=20, detail_max=90, strength=StrengthValue) # Sharpen only if complexity is >= 20% AND <=90%. # The last ~10% is left untouched (pass-through), to avoid sharpening highest frequency components ( Peak artifacts, sharpest edge, etc. ) ## ################## End Auto Strength #################### AddBorders(8,24,8,24) -kwag |
Thanx
THANK YOU SO MUCH!!!
|
Site design, images and content © 2002-2026 The Digital FAQ, www.digitalFAQ.com
Forum Software by vBulletin · Copyright © 2026 Jelsoft Enterprises Ltd.