Advertisement
Bateau

Deinterlacing-Decimation-VFR 2012.06.08

Jun 10th, 2012
302
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.00 KB | None | 0 0
  1. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  2. ~ Deinterlacing - Decimation - VFR ~
  3. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  4.  
  5.  
  6. *DGDecode fieldop=2 needed!
  7.  
  8.  
  9. Deinterlacing (60i to 30p):
  10. ~~~~~~~~~~~~~~
  11.  
  12. TDeint(mode=0, order=-1, field=-1, type=2, sharp=true, slow=2, opt=4)
  13. *note type 2 for live type 3 for anime
  14.  
  15.  
  16. ~double rate output for interlaced content
  17. Interp=eedi3(field=-2, vcheck=3, sclip=nnedi3(field=-2, nns=4, threads=0, opt=0), threads=0)
  18. 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)
  19.  
  20. ~single rate output for interlaced content
  21. Interp=eedi3(field=-1, vcheck=3, sclip=nnedi3(field=-1, nns=4, threads=0, opt=0), threads=0)
  22. 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)
  23.  
  24.  
  25. Interp = eedi3(field=-1,vcheck=3,sclip=nnedi3(field=-1,nns=4))
  26. TDeint(order=-1,field=-1,type=3,slow=2,edeint=Interp,emask=TMM(order=-1,field=-1))
  27. *-1 single rate, -2 double rate
  28. *note: field should have the same setting as order.
  29.  
  30.  
  31. -------------------------------------------------------------
  32.  
  33.  
  34. Decimation (from 60i):
  35. ~~~~~~~~~~~
  36.  
  37. Interp=eedi3(field=-1, vcheck=3, sclip=nnedi3(field=-1, nns=4, threads=0, opt=0), threads=0)
  38. 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)
  39. TFM(order=-1, mode=1, PP=7, field=-1, slow=2, opt=4, clip2=someclip)
  40. TDecimate(mode=1, rate=23.976, hybrid=0, opt=4)
  41.  
  42.  
  43. ~this may not work properly. possibly only put eedi3 and nnedi3 for someclip
  44.  
  45. Interp = eedi3(field=-1,vcheck=3,sclip=nnedi3(field=-1,nns=4))
  46. someclip = TDeint(order=-1,field=-1,type=3,slow=2,edeint=Interp,emask=TMM(order=-1,field=-1))
  47. TFM(order=-1, mode=1, PP=7, field=-1, slow=2, opt=4, clip2=someclip)
  48. TDecimate(mode=1, rate=23.976, hybrid=0, opt=4)
  49.  
  50. *note: field should have the same setting as order.
  51.  
  52.  
  53. -------------------------------------------------------------
  54.  
  55.  
  56. VFR:
  57. ~~~~
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement