Log in

View Full Version : ColorMatrix and interlaced


tom942
13th October 2006, 20:02
Hello,

I'm using NaN DGdecode to use ColorMatrix. Until now, I've been testing my dvd's just adding:

ColorMatrix(mode="Rec.601->Rec.709",hints=true)

indepently of the dvd was in progressive or interlaced.

But reading through the ColorMatrix's thread I found that if I just write down that, the plugin assume that the dvd is progressive, so what should I do if I find an interlaced dvd?; should I add (interlaced=true) as ColorMatrix's docs said?.

I mean write this line: "ColorMatrix(mode="Rec.601->Rec.709",hints=true,interlaced=true)" instead the other when I see this line:"ConvertToYUY2(interlaced=true)" in the avs script generated by rebuilder in the prepare phase?

Thanks in advance, and if this is not the place, excuse me, but I didnīt know in which thread to post it.

Video Dude
13th October 2006, 22:32
From the documentation:

interlaced:

Interlaced YV12 video requires special handling... so if your video is YV12 and is interlaced you need to set this parameter to true. Otherwise, leave it false.

default - false (bool)


You put interlaced = true.


Make sure ColorMatrix is directly after the mpeg2source line. No other filter can be before it.



Edit:
tritical has released ColorMatrix v2.0 (http://forum.doom9.org/showthread.php?p=887227#post887227)