You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I notice that a special string is passed to ex_MinBlur containing the named parameter Y=Lum that is to be passed to ex_Median.
Later on, it is passed to Eval, for evaluation inside the ex_MinBlur function. However, that function does not have any variable named Lum in it, and thus I think that is probably the source of the error.
If I change the ex_Median call to read """ex_Median(mode="horizontal" ,Y=Y,UV=uv)""", then the SMDegrain filter will run successfully, but I am not familiar enough with this filter to know whether the results are as expected or not.
The text was updated successfully, but these errors were encountered:
Describe the bug
The SMDegrain filter crashes with error:
To Reproduce
This simple filter statement seems adequate to trigger it:
Prefilter 2 is also broken in the same way.
Expected behavior
The prefilter should be run and applied as part of image processing.
System:
Additional context
At
Avisynth-Scripts/SMDegrain/SMDegrain.avsi
Lines 320 to 321 in 31459ff
ex_MinBlur
containing the named parameterY=Lum
that is to be passed toex_Median
.Later on, it is passed to
Eval
, for evaluation inside theex_MinBlur
function. However, that function does not have any variable namedLum
in it, and thus I think that is probably the source of the error.Avisynth-Scripts/SMDegrain/SMDegrain.avsi
Line 779 in 31459ff
If I change the
ex_Median
call to read"""ex_Median(mode="horizontal" ,Y=Y,UV=uv)"""
, then the SMDegrain filter will run successfully, but I am not familiar enough with this filter to know whether the results are as expected or not.The text was updated successfully, but these errors were encountered: