digitalFAQ.com Forums [Archives]

digitalFAQ.com Forums [Archives] (http://www.digitalfaq.com/archives/)
-   Video Encoding and Conversion (http://www.digitalfaq.com/archives/encode/)
-   -   Avisynth - how to Load Filter? (http://www.digitalfaq.com/archives/encode/1589-avisynth-how-load.html)

Paul0889 11-16-2002 03:27 PM

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

kwag 11-16-2002 04:07 PM

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

Paul0889 11-16-2002 04:10 PM

Thanx
 
THANK YOU SO MUCH!!!


All times are GMT -5. The time now is 01:25 AM  —  vBulletin © Jelsoft Enterprises Ltd

Site design, images and content © 2002-2026 The Digital FAQ, www.digitalFAQ.com
Forum Software by vBulletin · Copyright © 2026 Jelsoft Enterprises Ltd.