DIggedy
5th May 2005, 00:31
I'm using the following script to convert a HD 1920x1088 29.97 .ts file down to a 1280x544 (cropped for 2.35:1) divx file:
----------------------------------------------------------
# LOAD PLUGINS
LoadPlugin("C:\Program Files\AviSynth 2.5\plugins\DGDecode.dll")
LoadPlugin("C:\Program Files\AviSynth 2.5\plugins\Decomb521.dll")
LoadPlugin("C:\Program Files\AviSynth 2.5\plugins\UnDot.dll")
# SOURCE
mpeg2source("C:\Disc3.d2v")
# DECIMATE
Telecide(order=1)
Decimate(cycle=5)
# RESIZE
LanczosResize(1280,544)
----------------------------------------------------------
Note that the crop was done in DGIndex when creating the .d2v file.
The problem is that the output looks great, except for a strange colour abberation that occurs every 4th frame or so (see attached example), like one of the colour channels has a slight delay. Has anyone experienced this before?
----------------------------------------------------------
# LOAD PLUGINS
LoadPlugin("C:\Program Files\AviSynth 2.5\plugins\DGDecode.dll")
LoadPlugin("C:\Program Files\AviSynth 2.5\plugins\Decomb521.dll")
LoadPlugin("C:\Program Files\AviSynth 2.5\plugins\UnDot.dll")
# SOURCE
mpeg2source("C:\Disc3.d2v")
# DECIMATE
Telecide(order=1)
Decimate(cycle=5)
# RESIZE
LanczosResize(1280,544)
----------------------------------------------------------
Note that the crop was done in DGIndex when creating the .d2v file.
The problem is that the output looks great, except for a strange colour abberation that occurs every 4th frame or so (see attached example), like one of the colour channels has a slight delay. Has anyone experienced this before?