Log in

View Full Version : secret undot ?


Ac3Dc3
12th August 2004, 10:34
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 :rolleyes:

Ac3Dc3.

niamh
12th August 2004, 14:38
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)

no noise, advanced avs window script:
# PLUGINS
LoadPlugin("C:\PROGRA~1\GORDIA~1\AviSynthPlugins\dgdecode.dll")

# SOURCE("...")

no noise, normal avs window script:
# PLUGINS
LoadPlugin("C:\PROGRA~1\GORDIA~1\AviSynthPlugins\dgdecode.dll")
LoadPlugin("C:\PROGRA~1\GORDIA~1\AviSynthPlugins\UnDot.dll")

# SOURCE("...")
Undot()

;)

Ac3Dc3
12th August 2004, 18:25
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!