Log in

View Full Version : White line (flashing) at the right side ?


ookzDVD
18th March 2003, 03:36
I have a problem with AVI playback,
which IVTC used decomb beta 7, avisynth 2.51,
codec xvid, playback use Nic's and ffdshow, both
producing the flashing white line at the right side.

I don't have ideas which bug producing the flashing white line bug.

Someone have some experience with me ? And have solution for it ?

Thank you.

Guest
18th March 2003, 05:10
Post the complete script you used.

ookzDVD
19th March 2003, 03:37
Here is my complete script :

#
# PLUGINS
LoadPlugin("c:\plugins\mpeg2dec3.dll")
LoadPlugin("c:\plugins\decomb.dll")
#
# SOURCE
mpeg2source("c:\GANGS_OF_NEW_YORK\gangs.d2v")
#
# IVTC
Telecide(guide=1)
Decimate(cycle=5)
#
# CROPPING
crop(8,0,706,478)
#
# RESIZING
LanczosResize(512,384)


Thank you.

kxy
19th March 2003, 05:14
Change your crop values, the problem will be solved. For me, I make sure the values are divisible by four.

ookzDVD
28th March 2003, 10:07
Originally posted by kxy
Change your crop values, the problem will be solved. For me, I make sure the values are divisible by four.


In YV12:
width mod-2
height mod-2 if video is progressive
height mod-4 if video is interlaced




crop(8,0,706,478)


Hmmm... it's because of 478 not mod-4 :(

Thank you.