Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ~ Deinterlacing - Decimation - VFR ~
- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- *DGDecode fieldop=2 needed!
- Deinterlacing (60i to 30p):
- ~~~~~~~~~~~~~~
- TDeint(mode=0, order=-1, field=-1, type=2, sharp=true, slow=2, opt=4)
- *note type 2 for live type 3 for anime
- ~double rate output for interlaced content
- Interp=eedi3(field=-2, vcheck=3, sclip=nnedi3(field=-2, nns=4, threads=0, opt=0), threads=0)
- TDeint(mode=1, order=-1, field=-1, type=3, sharp=true, edeint=Interp, emask=TMM(mode=1, order=-1, field=-1), slow=2, opt=4)
- ~single rate output for interlaced content
- Interp=eedi3(field=-1, vcheck=3, sclip=nnedi3(field=-1, nns=4, threads=0, opt=0), threads=0)
- TDeint(mode=0, order=-1, field=-1, type=3, sharp=true, edeint=Interp, emask=TMM(mode=0, order=-1, field=-1), slow=2, opt=4)
- Interp = eedi3(field=-1,vcheck=3,sclip=nnedi3(field=-1,nns=4))
- TDeint(order=-1,field=-1,type=3,slow=2,edeint=Interp,emask=TMM(order=-1,field=-1))
- *-1 single rate, -2 double rate
- *note: field should have the same setting as order.
- -------------------------------------------------------------
- Decimation (from 60i):
- ~~~~~~~~~~~
- Interp=eedi3(field=-1, vcheck=3, sclip=nnedi3(field=-1, nns=4, threads=0, opt=0), threads=0)
- someclip=TDeint(mode=0, order=-1, field=-1, type=3, sharp=true, edeint=Interp, emask=TMM(mode=0, order=-1, field=-1), slow=2, opt=4)
- TFM(order=-1, mode=1, PP=7, field=-1, slow=2, opt=4, clip2=someclip)
- TDecimate(mode=1, rate=23.976, hybrid=0, opt=4)
- ~this may not work properly. possibly only put eedi3 and nnedi3 for someclip
- Interp = eedi3(field=-1,vcheck=3,sclip=nnedi3(field=-1,nns=4))
- someclip = TDeint(order=-1,field=-1,type=3,slow=2,edeint=Interp,emask=TMM(order=-1,field=-1))
- TFM(order=-1, mode=1, PP=7, field=-1, slow=2, opt=4, clip2=someclip)
- TDecimate(mode=1, rate=23.976, hybrid=0, opt=4)
- *note: field should have the same setting as order.
- -------------------------------------------------------------
- VFR:
- ~~~~
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement