Cunhambebe
18th April 2007, 02:51
This is a simple question I might have asked before, but I can't find it on the foruns; please take look at this script:
LoadPlugin("C:\unzipped\dgmpgdec148\DGDecode.dll")
LoadPlugin("C:\avs_filters\ColorMatrix\Release\colormatrix.dll")
LoadPlugin("C:\avs_filters\TomsMoComp\TomsMoComp_Avisynth\Debug\TomsMoComp.dll")
MPEG2Source("C:\birds.d2v")
ColorMatrix(mode="Rec.601->Rec.709")
TomsMoComp(1,5,1)
ConvertToRGB()
Crop(0,50,0,-50)
Lanczos4Resize(720,394)
As you can see, I'm de-interlacing a video here with TomsMoComp. I've heard that if one line (for instance, the one for the ColorMatrix) came after the plug-in that de-interlaces, the plug-in would destroy the information of colorimetry generated by ColorMatrix.
So this is a simple question: is this script correct (as the order of the lines)?
Thanks in advance.
LoadPlugin("C:\unzipped\dgmpgdec148\DGDecode.dll")
LoadPlugin("C:\avs_filters\ColorMatrix\Release\colormatrix.dll")
LoadPlugin("C:\avs_filters\TomsMoComp\TomsMoComp_Avisynth\Debug\TomsMoComp.dll")
MPEG2Source("C:\birds.d2v")
ColorMatrix(mode="Rec.601->Rec.709")
TomsMoComp(1,5,1)
ConvertToRGB()
Crop(0,50,0,-50)
Lanczos4Resize(720,394)
As you can see, I'm de-interlacing a video here with TomsMoComp. I've heard that if one line (for instance, the one for the ColorMatrix) came after the plug-in that de-interlaces, the plug-in would destroy the information of colorimetry generated by ColorMatrix.
So this is a simple question: is this script correct (as the order of the lines)?
Thanks in advance.