Log in

View Full Version : FixBrokenChromaUpsampling() before YUY2?


tivi
25th November 2003, 22:40
Hi folks!

I read a lot the last two days...Now, I'm a little bit confused....


I would like to know if FixBrokenChromaUpsampling()
has to be used before conversion to YUY2.


In other words, will both scripts generate the same output?

----------------------------------------------------------
AVISource("G:\SCENE0~1.AVI",False).FixBrokenChromaUpsampling()
ConvertToYUY2()
Telecide()
BicubicResize(480,576,0.0,0.6)
Import("E:\SVCD\DV\ResampleAudio.avs")
ResampleAudio(44100)
----------------------------------------------------------


----------------------------------------------------------
AVISource("G:\SCENE0~1.AVI",False)
ConvertToYUY2()
Telecide()
FixBrokenChromaUpsampling()
BicubicResize(480,576,0.0,0.6)
Import("E:\SVCD\DV\ResampleAudio.avs")
ResampleAudio(44100)
----------------------------------------------------------


Thank you very much.


tivi

nicco
26th November 2003, 10:06
FixBrokenchroma works only with YUY2, so if your avi is already in YUY2 you have not to convert it, otherwise you have to convert it before using fixbrokenchroma.

tivi
26th November 2003, 11:14
Thank you very much, nicco.

I just did a test. Applying FixBrokenChromaUpsampling()
before ConvertToYUY2() results in an errormessage.

As you mentioned.

Now it does... Exactly the same test yesterday: No errormessage.

Don't know what's wrong...but.....don't care.....


cu


tivi