What I did was take the 64 bit dgdecode.dll file and replace the 32 bit dgdecode.dll in my dgindex folder. I reindexed deleting the old .d2v for a new copy. This was the problem, both dgindex's dgdecode and the one avisynth is using has to be the same 64bit or 32 bit. I noticed alot of ppl having problems on the internet that could be related to why they can't get 32 to work but can get 64 to work or vice versa.
On a somewhat related note:
Code: Select all
Mpeg2source("F:\hack.d2v")
interp = separatefields().selecteven().eedi2()
tdeint(edeint=interp)
removegrain(mode=5)
fft3dfilter(bw=6, bh=6, ow=3, oh=3, plane=0, bt=1, sigma=6)
fft3dfilter(bw=216, bh=216, ow=108, oh=108, plane=4, bt=3, sigma=6/8, sigma2=6/4, sigma3=6/2, sigma4=6,sharpen=0.6)
gradfun2db()
Tweak(hue=1.0,sat=1.3,bright=-0.2,cont=1.0)
crop(4,0,-4,0)
spline36resize(848,480)
and:
Code: Select all
setmtmode(2,6)
Mpeg2source("F:\hack.d2v")
interp = separatefields().selecteven().eedi2()
tdeint(edeint=interp)
removegrain(mode=5)
fft3dfilter(bw=6, bh=6, ow=3, oh=3, plane=0, bt=1, sigma=6)
fft3dfilter(bw=216, bh=216, ow=108, oh=108, plane=4, bt=3, sigma=6/8, sigma2=6/4, sigma3=6/2, sigma4=6,sharpen=0.6)
gradfun2db()
Tweak(hue=1.0,sat=1.3,bright=-0.2,cont=1.0)
crop(4,0,-4,0)
spline36resize(848,480)
All in all if you can run avisynth 64 and get it working, IT IS WORTH IT.