This is in my experience, at least.mirkosp wrote:Please note that there are more instances of dehalo_alpha at a low strength and with different radii values because they are targeted at different halos and because different strength parameters give different results, so it is often better to call it more times at a lower strength than it is to just increase the strength.
About the mergechroma... basically, a rule of thumb in avisynth is that if there's a clip parameter, it's going to be assumed as being "last" (if not specified) in most cases, this being one of such. Last in avisynth is often implied. For instance, when you write a script like
Code: Select all
avisource("my file.avi")
spline36resize(640,480)
Code: Select all
last = avisource("my file.avi")
last = last.spline36resize(640,480)
return last
So in the case of mergechroma that I used, what avisynth is seeing is pretty much:
Code: Select all
mergechroma(last.awarpsharp2(depth=48),last)
Personally if I don't find enough info on the avisynth wiki (could happen with some external filters), I first check the filter's documentation itself and, if absent or not comprehensive, try to toy around with the filter as a last resort. I didn't really use any parameters that weren't listed on the wiki though, in this case.
At most, what I can suggest you is to follow niiyan's blog's RSS. It's a pretty good way to keep up to date with new filters and related stuff without having to check a lot of places on your own.