InsigniaMath
10th August 2017, 22:03
Hey Everyone,
I am trying to use FFT3DFilter in AviSynth+ but I am getting the following error:
FFT3DFilter: libffw3f-3.dll or fftw3.dll not found. Please put in PATH or use LoadDll() plugin (cant find documentation for this function). So I am using the 32-bit version of FFT3DFilter, version 2.4 from here:
https://github.com/pinterf/fft3dfilter/releases
I have libfftw3f-3.dll in my System32 folder, I do not have fftw3.dll, but I am assume I need one or the other, not both. I even put the dll in the AviSynth plugins folder, but it does not stop the error. Here is the script I have thus far if that puts anything into context:
##################
ret=ImageSource("C:path/to/exr/files%02d", start=1, end=4, fps=24, use_DevIL=False, info=False, pixel_type="RGB32")
input=ConvertToYV16(ret, matrix="Rec709", interlaced=false)
super1 = FFT3DFilter(input, sigma=100.5, bt=5, bw=32, bh=32, ow=16, oh=16, sharpen=0.1)
return input
##################
Any help would be greatly appreciated, thanks!
I am trying to use FFT3DFilter in AviSynth+ but I am getting the following error:
FFT3DFilter: libffw3f-3.dll or fftw3.dll not found. Please put in PATH or use LoadDll() plugin (cant find documentation for this function). So I am using the 32-bit version of FFT3DFilter, version 2.4 from here:
https://github.com/pinterf/fft3dfilter/releases
I have libfftw3f-3.dll in my System32 folder, I do not have fftw3.dll, but I am assume I need one or the other, not both. I even put the dll in the AviSynth plugins folder, but it does not stop the error. Here is the script I have thus far if that puts anything into context:
##################
ret=ImageSource("C:path/to/exr/files%02d", start=1, end=4, fps=24, use_DevIL=False, info=False, pixel_type="RGB32")
input=ConvertToYV16(ret, matrix="Rec709", interlaced=false)
super1 = FFT3DFilter(input, sigma=100.5, bt=5, bw=32, bh=32, ow=16, oh=16, sharpen=0.1)
return input
##################
Any help would be greatly appreciated, thanks!