|
|
Hi
does Gordian Knot 0.32.0 add a denoise filter to the avs script whether you ask it to or not ?its just that whatever i encode, i make sure i have no denoising options set. but in every avs script that gKnot writes, it loads the Undot.dll filter in the aviynth plugins folder and has the undot() command later on in the script in the denoise secion...so can i turn this off somehow ? - without hving to manually edit every script
Ac3Dc3.
every single version of Gknot uses undot, you just only realized it ....all it does is catch stray pixels, besides it doesnt slow down the encode, but if you really really don't want it, I'm pretty sure the advanced avs window does not load it, whereas the normal avs window does. So use advanced avs, (to set in options)Code:
no noise, advanced avs window script:
# PLUGINS
LoadPlugin(quot;C:\PROGRA~1\GORDIA~1\AviSynthPlugins\dgdecode.dllquot;)
# SOURCE(quot;...quot;)
no noise, normal avs window script:
# PLUGINS
LoadPlugin(quot;C:\PROGRA~1\GORDIA~1\AviSynthPlugins\dgdecode.dllquot;)
LoadPlugin(quot;C:\PROGRA~1\GORDIA~1\AviSynthPlugins\UnDot.dllquot;)
# SOURCE(quot;...quot;)
Undot()im still learnin' the advanced save avs feature is a really neat option for all kinds of things, thanks for the eye opener and thanks for the fast reply! |
|