Advertisement
StotheG

Infernal 2 (6 lines all around)

Aug 30th, 2015
122
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.94 KB | None | 0 0
  1. LoadPlugin("C:\Program Files (x86)\MeGUI\tools\ffms\ffms2.dll")
  2. FFVideoSource("D:\Encoding area\infernal\Inf2.mkv", fpsnum=24, fpsden=1)
  3. crop(0, 146, 0, -142)
  4. Spline36Resize(1280,528)
  5.  
  6. safe = Crop(6, 6, -6, -6)
  7.  
  8. ConvertToYV24()
  9. base = Crop(0, 6, 0, -6)
  10. top1 = Crop(0, 0, 0, 1 - Height()).Tweak(cont=0.95)
  11. top2 = Crop(0, 1, 0, 2 - Height()).Tweak(cont=0.92)
  12. top3 = Crop(0, 2, 0, 3 - Height()).Tweak(cont=1.05)
  13. top4 = Crop(0, 3, 0, 4 - Height()).Tweak(cont=0.98)
  14. top5 = Crop(0, 4, 0, 5 - Height()).Tweak(cont=1.01)
  15. top6 = Crop(0, 5, 0, 6 - Height()).Tweak(cont=0.99)
  16. bottom6 = Crop(0, Height() - 6, 0, -5)#.Tweak(cont=1.97)
  17. bottom5 = Crop(0, Height() - 5, 0, -4).Tweak(cont=1.02)
  18. bottom4 = Crop(0, Height() - 4, 0, -3)#.Tweak(cont=1.97)
  19. bottom3 = Crop(0, Height() - 3, 0, -2).Tweak(cont=1.07)
  20. bottom2 = Crop(0, Height() - 2, 0, -1).Tweak(cont=0.94)
  21. bottom1 = Crop(0, Height() - 1, 0, -0).Tweak(cont=0.98)
  22. StackVertical(top1, top2, top3, top4, top5, top6, base, bottom6, bottom5, bottom4, bottom3, bottom2, bottom1)
  23.  
  24. base1 = Crop(6, 0, -0, 0)
  25. left1 = Crop(0, 0, 1 - Width(), 0).Tweak(cont=2.1)
  26. left2 = Crop(1, 0, 2 - Width(), 0).Tweak(cont=1.02)
  27. left3 = Crop(2, 0, 3 - Width(), 0).Tweak(cont=0.99)
  28. left4 = Crop(3, 0, 4 - Width(), 0).Tweak(cont=1.03)
  29. left5 = Crop(4, 0, 5 - Width(), 0).Tweak(cont=1.00)
  30. left6 = Crop(5, 0, 6 - Width(), 0).Tweak(cont=1.015)
  31. StackHorizontal(left1, left2, left3, left4, left5, left6, base1)
  32.  
  33. base2 = Crop(0, 0, -6, 0)
  34. right1 = Crop(Width() - 1, 0, -0, 0).Tweak(cont=2.2)
  35. right2 = Crop(Width() - 2, 0, -1, 0).Tweak(cont=1.05)
  36. right3 = Crop(Width() - 3, 0, -2, 0).Tweak(cont=1.05)
  37. right4 = Crop(Width() - 4, 0, -3, 0).Tweak(cont=1.05)
  38. right5 = Crop(Width() - 5, 0, -4, 0)#.Tweak(cont=1.00)
  39. right6 = Crop(Width() - 6, 0, -5, 0).Tweak(cont=1.02)
  40. StackHorizontal(base2, right6, right5, right4, right3, right2, right1)
  41.  
  42. ConvertToYV12()
  43. Overlay(last, safe, x=6, y=6)
  44. trim(0,165822).balanceborders(4,4,4,4)+trim(165823,0)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement