omf
17th July 2007, 17:14
I noticed a little issue in trying to come up with a clean deinterlace.
The default AVS created by MeGUI for an interlaced source looks something like this:
DGDecode_mpeg2source("video.d2v",info=3)
ColorMatrix(hints=true)
TDeint(order=1)
Here's a frame from VirtualDub given that AVS:
http://www.justified.com/misc/tdeint2.jpg
Adding "INTERLACED=TRUE" to the COLORMATRIX line doesn't make a difference, but removing "INFO=3" from the DGDECODE line fixes the issue completely:
http://www.justified.com/misc/tdeint1.jpg
Given that, I ended up changing my AVS like so:
DGDecode_mpeg2source("video.d2v")
TDeint(order=1)
ColorMatrix(d2v="video.d2v")
A couple of questions for all of you more experienced at this stuff than I:
1. Is this behavior a bug or a feature (or am I doing something wrong)?
2. Any reason not to move the COLORMATRIX line to the bottom of the script?
The default AVS created by MeGUI for an interlaced source looks something like this:
DGDecode_mpeg2source("video.d2v",info=3)
ColorMatrix(hints=true)
TDeint(order=1)
Here's a frame from VirtualDub given that AVS:
http://www.justified.com/misc/tdeint2.jpg
Adding "INTERLACED=TRUE" to the COLORMATRIX line doesn't make a difference, but removing "INFO=3" from the DGDECODE line fixes the issue completely:
http://www.justified.com/misc/tdeint1.jpg
Given that, I ended up changing my AVS like so:
DGDecode_mpeg2source("video.d2v")
TDeint(order=1)
ColorMatrix(d2v="video.d2v")
A couple of questions for all of you more experienced at this stuff than I:
1. Is this behavior a bug or a feature (or am I doing something wrong)?
2. Any reason not to move the COLORMATRIX line to the bottom of the script?