CCE encoding problem(see picture)

have been trying in many way to use cce, but for any mpeg2 option i set (this not happen in mpeg1) i get the picture with those lines, it seems that i cannot make it underway the interlaced video.
In tmpeg activating the interlace filter all is fine but in cce is always the same, no matter which format is the avi: mjpeg or dv.

Any clue?

the footage is acquired using a nVidia Ti4600

cheers and happy new year
 

Attachments

Last edited:
What you see there are Interlacing interfearance. You need to de-interlace it. Your avisynth script needs to have in it (in bold)

LoadPlugin("E:\DVD2SVCD\MPEG2Dec\MPEG2D~1.DLL")
LoadPlugin("E:\DVD2SVCD\Donald Graft\Decomb.dll")
AVISource("I:\THELOR~1.XVI\LOTR2.avi",False)
ConvertToYUY2()
Telecine ()
BicubicResize(720,276,0.0,0.6)
AddBorders(0,102,0,102)
ResampleAudio(44100)
 
Top