- 480 名前:名無しさん@お腹いっぱい。 mailto:sage [2009/05/23(土) 01:37:02 ID:HTXu5xUr0]
- TDeint.avs
function TDeint_(clip clip, int "i0", int "i1", int "i2", int "i3", int "i4", int "i5", int "i6", bool "b0", bool "b1"){ Interp = clip.AssumeTFF().SeparateFields().SelectEven().EEDI2(field=1) useEEDI2 = clip.TDeint( \ order = default(i0,1), \ field = default(i1,1), \ mthreshL = default(i2,6), \ mthreshC = default(i3,6), \ type = default(i4,2), \ cthresh = default(i5,6), \ map = default(i6,0), \ tryWeave = default(b0,true), \ edeint = Interp) nouseEEDI2 = clip.TDeint( \ order = default(i0,1), \ field = default(i1,1), \ mthreshL = default(i2,6), \ mthreshC = default(i3,6), \ type = default(i4,2), \ cthresh = default(i5,6), \ map = default(i6,0), \ tryWeave = default(b0,true)) clp = (b1 == true) ? useEEDI2 : nouseEEDI2 return clp }
|

|