View Full Version : HELP: problems frameserving simple scripts from virtualdub to megui


crespo80
13th February 2012, 03:48
I have some avi files encoded in Mjpeg 720x576 interlaced (enc/dec codecs installed) with 48Khz/16bit/stereo PCM audio.

I have to use only two filters, the first is the denoiser in vdub (it doesn't work in avisynth) and the second is the upscaler in avisynth, and then compress with megui to x264.

the first avisynth script is

AviSource("f:\source.avi")
separatefields()
selecteven()


I open it in vdub, apply the denoise filter and frameserve to the file frameserve.vdr

I then have the second avisynth script

LoadPlugin("C:\Program files (x86)\AviSynth 2.5\plugins\nnedi3.dll")
AviSource("f:\frameserve.vdr")
nnedi3(dh=true)


I open this in megui but it returns the error
"could not locate video stream"

Megui can see the frameserving stuff, because if I stop the vdub frameserving and try to open the avs, it gives me another error: "couldn't open file"

I tried with directshowsource but nothing.