jarthel
12th November 2004, 18:22
I have the following script:
----------
import("C:\Program Files\NuMenu4U\new.avs\addaudio.avs")
LoadPlugin("C:\Program Files\NuMenu4U\new.dvd2avi\mpeg2dec3dg.dll")
Mpeg2Source("C:\INITIAL_D_VOL_6\D_VTS_01_0\FRAMESERVING\001.d2v" ,Idct=7,iPP=true)
LoadPlugin("d:\downloads\windows\videos\DVD authoring\avisynth\plugins25\decomb.dll")
FieldDeinterlace()
LoadPlugin("d:\downloads\windows\videos\DVD authoring\avisynth\plugins25\removegrain.dll")
LoadPlugin("d:\downloads\windows\videos\DVD authoring\avisynth\plugins25\removedirt.dll")
removegrain()
removedirt()
AddAudio()
ConvertToYUY2()
-----------------------
If I load this script into CCE, I would get an error saying "Frame size 1112x56 is not supported". The weird thing is that if I open the file inside vdub, the frame size is 720x576 which PAL frame size.
Another weird thing, if I removed the "loadplugin" statements that are hightlighted, this script will load perfectly in CCE but of course vdub won't load cause "removegrain" and "removedirt" are unknown functions.
The weirdest thing of all is that this script was running 5 times before it decided not to run suddenly!!! :|
Any ideas?
----------
import("C:\Program Files\NuMenu4U\new.avs\addaudio.avs")
LoadPlugin("C:\Program Files\NuMenu4U\new.dvd2avi\mpeg2dec3dg.dll")
Mpeg2Source("C:\INITIAL_D_VOL_6\D_VTS_01_0\FRAMESERVING\001.d2v" ,Idct=7,iPP=true)
LoadPlugin("d:\downloads\windows\videos\DVD authoring\avisynth\plugins25\decomb.dll")
FieldDeinterlace()
LoadPlugin("d:\downloads\windows\videos\DVD authoring\avisynth\plugins25\removegrain.dll")
LoadPlugin("d:\downloads\windows\videos\DVD authoring\avisynth\plugins25\removedirt.dll")
removegrain()
removedirt()
AddAudio()
ConvertToYUY2()
-----------------------
If I load this script into CCE, I would get an error saying "Frame size 1112x56 is not supported". The weird thing is that if I open the file inside vdub, the frame size is 720x576 which PAL frame size.
Another weird thing, if I removed the "loadplugin" statements that are hightlighted, this script will load perfectly in CCE but of course vdub won't load cause "removegrain" and "removedirt" are unknown functions.
The weirdest thing of all is that this script was running 5 times before it decided not to run suddenly!!! :|
Any ideas?