View Single Post
Old 15th June 2018, 17:04   #16  |  Link
l33tmeatwad
Registered User
 
l33tmeatwad's Avatar
 
Join Date: Jun 2007
Posts: 414
Quote:
Originally Posted by kolak View Post
Code:
import vapoursynth as vs
core = vs.get_core()
import havsfunc as haf

clip = core.ffms2.Source(source="")
clip = core.resize.Bicubic(clip=clip,format=vs.YUV422P8)
deint = haf.QTGMC(clip, Preset='Fast', TFF=True)
deint.set_output()
so just a call of QTGMC.

If you add grain retention:

Code:
deint = haf.QTGMC(clip, Preset='Fast', TFF=True, EZKeepGrain=1)
then issues with FFT3DFilter appears.
It is working with the provided dependency binaries from the download location with an install using the VapourSynth installer. It's possibly something related to the split location for all the dependencies.

Edit: I just noticed I didn't list MVTools as needing FFTW3, it does require that dependency.

Last edited by l33tmeatwad; 15th June 2018 at 17:11. Reason: Updated information.
l33tmeatwad is offline   Reply With Quote