Quote:
Originally Posted by WhiteKnight54
so do i combine the script from FITcd into a big final one?
|
Yes, add the SansGrip filters ( Blockbuster, Fluxsmooth, etc. ) to your skeleton .avs script.
Here's a sample .avs I'm currently using right now on a movie:
Code:
LoadPlugin("C:\encoding\MPEG2DEC.dll")
LoadPlugin("C:\encoding\fluxsmooth.dll")
LoadPlugin("C:\encoding\blockbuster.dll")
LoadPlugin("C:\encoding\legalclip.dll")
mpeg2source("K:\RED_PLANET\VIDEO_TS\red.d2v")
LegalClip()
FluxSmooth()
Blockbuster( method="noise", detail_min=1, detail_max=10, variance=1, cache=1024 ) # Apply noise if complexity is <= 10%.
LegalClip()
-kwag