PDA

View Full Version : BorderControl-Problem - Green Border??


nbarzgar
16th August 2006, 11:16
Hello there,

haven't found an answer by searching...

I have the following AviSynth Script:

mpeg2Source("path_to_file.d2v")
Trim(31091,31266)
BorderControl(YBB=88)
ConvertToYUY2()
Cnr2()
GuavaComb(mode="PAL")
ColorYUV(levels="PC->TV")
ConvertToYV12()
UnDot()

and it works fine, but the image in preview AND encoded gets a green border... Did I omit something? Codec problem...?? :(

The idea is to enhance an already DVD-authored capture with the filters (works great, as I stated) and "clean" the places in the cap, where ads appear at bottom of image. So I have prepared 4 different .avs-files to encode just those parts with ... s.a. Encoding works fine as well, but border is still green.

nbarzgar
16th August 2006, 11:21
I AM TRULY SORRY!

Problem solved by changing order of "ConvertTo..."-filter:

mpeg2Source("path_to_file.d2v")
Trim(31091,31266)
ConvertToYUY2()
BorderControl(YBB=88)
Cnr2()
GuavaComb(mode="PAL")
ColorYUV(levels="PC->TV")
ConvertToYV12()
UnDot()
:o