Hello!
I changed my old avisynth into Avisynth+(x86) 32Bit but I can't make RemoveDirtMc works on it, I tried both RemoveGrains (RemoveGrainSSE2,RemoveGrainTSSE2 and it keeps giving me this error message:
![]()
+ Reply to Thread
Results 1 to 15 of 15
-
-
RestoreMotionBlocks() is included in the RemoveDirt dll.
http://web.archive.org/web/20140723074402/http://home.arcor.de/kassandro/RemoveDirt/RemoveDirt.htmLast edited by jagabo; 8th Feb 2019 at 18:03.
-
-
What script?
You need to also download and load RemoveDirt dll in your script. -
-
I found this script :
Code:function RemoveDirt(clip input, bool "_grey", int "repmode") { _grey=default(_grey, false) repmode=default(repmode, 16) clmode=17 clensed=Clense(input, grey=_grey, cache=4) sbegin = ForwardClense(input, grey=_grey, cache=-1) send = BackwardClense(input, grey=_grey, cache=-1) alt=Repair(SCSelect(input, sbegin, send, clensed, debug=true), input, mode=repmode, modeU = _grey ? -1 : repmode ) restore=Repair(clensed, input, mode=repmode, modeU = _grey ? -1 : repmode) corrected=RestoreMotionBlocks(clensed, restore, neighbour=input, alternative=alt, gmthreshold=70, dist=1, dmode=2, debug=false, noise=10, noisy=12, grey=_grey) return RemoveGrain(corrected, mode=clmode, modeU = _grey ? -1 : clmode ) }
-
-
I have tried many RemoveDirt dll and the only one has worked "RemoveDirt_x64". I tried "RemoveDirt() but gives me error, any suggestion?
If you wish to use the x64 version of AviSynth you'd also need to use the x64 version of RemoveDirt dll.
And that error is for DGDecode.dll not RemoveDirt. -
-
You already have it.
The most recent error message was about missing DgDecode.dll, part of DgMpgDec.
http://avisynth.nl/index.php/AviSynth%2B_x64_plugins
https://www.mediafire.com/download/c0wmemj5jam/DGDecode_3-19-2010.rarLast edited by jagabo; 11th Feb 2019 at 20:36.
-
-
Last edited by TeNSoR; 12th Feb 2019 at 06:58.
-
Similar Threads
-
RemoveDirtMC Error message
By TeNSoR in forum Newbie / General discussionsReplies: 5Last Post: 13th Jul 2018, 09:03 -
avisynth's FreezeFrame - can't get it to work
By pooksahib in forum Video ConversionReplies: 12Last Post: 28th Jun 2017, 09:46 -
New Install of Avisynth but can't get it to work
By nostalgia in forum Video ConversionReplies: 8Last Post: 7th Dec 2016, 08:52 -
RemoveDirtMC
By Mephesto in forum RestorationReplies: 31Last Post: 20th Oct 2015, 11:58 -
RemoveDirtMC won't load
By Elegant in forum RestorationReplies: 4Last Post: 21st Jul 2014, 10:00