I've been having issues with KNLMeansCL. When I use it, the gif would have a bunch of pink/black spots. I've never had this issue with vapoursynth until now. A lot of other people have had similar problems.
Denoising
KNLMeansCL
video = core.knlm.KNLMeansCL(video, d, a, s, h, channels="YUV")
d = Set the number of past and future frame that the filter uses for denoising the current frame. d=0 uses 1 frame, while d=1 uses 3 frames and so on. Usually, larger it the better the result of the denoising.
a = Set the radius of the search window. a=0 uses 1 pixel, while a=1 uses 9 pixels and so on. Usually, larger it the better the result of the denoising.
s = Set the radius of the similarity neighbourhood window. The impact on performance is low, therefore it depends on the nature of the noise.
h = Controls the strength of the filtering. Larger values will remove more noise.