cagali
11th April 2019, 06:05
The source is interlaced, 30i DVD vob.
This script works and outputs a single frame rate clip:
deint = mt_merge(last, QTGMC(Preset="Fast", FPSDivisor=2), TCombMask(lcLinked=true, athreshL=2, mthreshL=2).RemoveGrain(4, -1).mt_expand(mode=mt_square(2)).mt_inflate(), luma=true)
deint
I tried to change this script to output a double frame rate clip like this:
__q = QTGMC(Preset="Fast")
__d = SelectEvery(last,1,0,0)
__d
deint = mt_merge(last, __q, TCombMask(lcLinked=true, athreshL=2, mthreshL=2).RemoveGrain(4, -1).mt_expand(mode=mt_square(2)).mt_inflate(), luma=true)
deint
Obviously this did not work.
I compare the mask in single rate and double rate, and found that the mask in double rate is always DEEP GREEN, i.e. not a proper mask.
This script works and outputs a single frame rate clip:
deint = mt_merge(last, QTGMC(Preset="Fast", FPSDivisor=2), TCombMask(lcLinked=true, athreshL=2, mthreshL=2).RemoveGrain(4, -1).mt_expand(mode=mt_square(2)).mt_inflate(), luma=true)
deint
I tried to change this script to output a double frame rate clip like this:
__q = QTGMC(Preset="Fast")
__d = SelectEvery(last,1,0,0)
__d
deint = mt_merge(last, __q, TCombMask(lcLinked=true, athreshL=2, mthreshL=2).RemoveGrain(4, -1).mt_expand(mode=mt_square(2)).mt_inflate(), luma=true)
deint
Obviously this did not work.
I compare the mask in single rate and double rate, and found that the mask in double rate is always DEEP GREEN, i.e. not a proper mask.