View Full Version : strange white line


NightMare
6th September 2003, 15:58
i get a strange white line on the right side of my avs when i preview it
it on top of the screen to the bottom it keeps comin and goin how can i get rid of it

http://www.geocities.com/venom_pic/clip.avi

Guest
6th September 2003, 15:59
Is it present in the source file? What is your script?

NightMare
6th September 2003, 16:02
its decomb i think i need a new version

NightMare
6th September 2003, 16:03
Originally posted by neuron2
Is it present in the source file? What is your script?

no its not

Telecide(guide=1).Decimate(5)
LanczosResize(640,480)
Convolution3d(preset="animeLQ")
aWarpSharp(15)

NightMare
6th September 2003, 16:06
i'v been testing dont know why but i get it only when i crop

crop(4,2,714,478)

NightMare
6th September 2003, 16:14
used ver 5 still have it

NightMare
6th September 2003, 16:46
u can see it here the line gets bigger and whiter when u watch

http://www.geocities.com/venom_pic/Capture_2.jpg

u can really see it here

http://www.geocities.com/venom_pic/Capture_3.jpg

here is a clip

http://www.geocities.com/venom_pic/clip.avi

Wilbert
6th September 2003, 18:02
Try

Telecide(guide=1).Decimate(5)
LanczosResize(640,480,4,2,714,478)
Convolution3d(preset="animeLQ")
aWarpSharp(15)

NightMare
6th September 2003, 18:12
Originally posted by Wilbert
Try

Telecide(guide=1).Decimate(5)
LanczosResize(640,480,4,2,714,478)
Convolution3d(preset="animeLQ")
aWarpSharp(15)


it worked :D great thanx
but do u know what was the problem?!

stickboy
6th September 2003, 19:26
Some filters do not behave properly if the width and/or height are not multiples of certain numbers (usually 2 or 4), so sometimes you need to filter before cropping.

NightMare
6th September 2003, 20:11
Originally posted by stickboy
Some filters do not behave properly if the width and/or height are not multiples of certain numbers (usually 2 or 4), so sometimes you need to filter before cropping.

i tested without filters same problem

Wilbert
6th September 2003, 22:12
The problem was that you were cropping mod 2 on a YV12 source. I didn't throw an error because your final resolution is mod4, but it should.

NightMare
6th September 2003, 22:39
Originally posted by Wilbert
The problem was that you were cropping mod 2 on a YV12 source. I didn't throw an error because your final resolution is mod4, but it should.

that was it thanx alot