logo Sign In

Post #406203

Author
Lord Grievous
Parent topic
AviSynth/VirtualDubMod YV12 problems...
Link to post in topic
https://originaltrilogy.com/post/id/406203/action/topic#406203
Date created
31-Mar-2010, 1:33 PM

I tried this a couple of days ago and it didn't work, I just tried it again and it still doesn't work. This is my script:

LoadPlugin("X:\My Files\AV Tools\dgmpgdec158\DGDecode.dll")
MPEG2Source("D:\TEMP\PROJECT\test.d2v")

The files are where they're supposed to be. It does open in VirtualDubMod now, so that's something, but I can never get it to work in VirtualDub. I'll use VirtualDubMod for now but does anyone know why it won't work in VirtualDub? I'd rather use that one because it's newer and has a 64bit version.

When I open the AVS script in VirtualDub 1.9.8 it gives me the error "AVI import filter error: (unknown) (80040154)". Anyone know what this means.

EDIT: Does anyone know some (really) good AviSynth plugins for degraining? I'm using mvtools2 with this script:

LoadPlugin("C:\Program Files (x86)\VirtualDubMOD\plugins\DGDecode.dll")
LoadPlugin("C:\Program Files (x86)\VirtualDubMOD\plugins\mvtools2.dll")
MPEG2Source("D:\TEMP\PROJECT\test.d2v")
source = AVISource("D:\TEMP\PROJECT\test.d2v")
backward_vec2 = source.MVAnalyse(isb = true, lambda = 1000, delta = 2)
backward_vec1 = source.MVAnalyse(isb = true, lambda = 1000, delta = 1)
forward_vec1 = source.MVAnalyse(isb = false, lambda = 1000, delta = 1)
forward_vec2 = source.MVAnalyse(isb = false, lambda = 1000, delta = 2)
source.MVDenoise(backward_vec2,backward_vec1,forward_vec1,forward_vec2,tht=10,thSAD=300)

But it doesn't seem to open it :(