jrjazzman
10th August 2003, 15:54
Hi, I'm feeding an avisynth script to vdubmod, and saving using fast recompress and huffyuv. I then open the resultant file in vdubmod or vdub and it goes through the process of "reconstructing missing index block"; however, it only gets about 40% finished, then stops, which leaves me with 60% of the video missing. Is there something in the following script or my vdubmod saving method that is causing this? Thanks.
LoadPlugin("D:\Program Files\AviSynth 2.5\plugins\Decomb.dll")
LoadPLugin("D:\Program Files\AviSynth 2.5\plugins\BicublinResize.dll")
LoadPLugin("D:\Program Files\AviSynth 2.5\plugins\MipSmooth.dll")
AVISource("g:\scene0001.avi")
FixBrokenChromaUpsampling()
ConvertToYV12(interlaced=true)
SeparateFields()
MipSmooth(spatial=12, temporal=16, spatial_chroma=16, temporal_chroma=16, scenechange=8, method="strong", downsizer="bilinear", upsizer="bicubic", scalefactor=.75)
Weave()
ConvertToYUY2()
LoadPlugin("D:\Program Files\AviSynth 2.5\plugins\Decomb.dll")
LoadPLugin("D:\Program Files\AviSynth 2.5\plugins\BicublinResize.dll")
LoadPLugin("D:\Program Files\AviSynth 2.5\plugins\MipSmooth.dll")
AVISource("g:\scene0001.avi")
FixBrokenChromaUpsampling()
ConvertToYV12(interlaced=true)
SeparateFields()
MipSmooth(spatial=12, temporal=16, spatial_chroma=16, temporal_chroma=16, scenechange=8, method="strong", downsizer="bilinear", upsizer="bicubic", scalefactor=.75)
Weave()
ConvertToYUY2()