Advertisement
StotheG

Cloverfield (all around)

May 16th, 2016
105
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.45 KB | None | 0 0
  1. LoadPlugin("C:\Program Files (x86)\MeGUI\tools\ffms\ffms2.dll")
  2. FFVideoSource("D:\Encoding area\clover\clover.mkv", fpsnum=24000, fpsden=1001)
  3. Spline36Resize(1280,720,2,1,-1,-1)
  4. safe = Crop(4, 4, -4, -4)
  5.  
  6. ConvertToYV24()
  7. base = Crop(0, 4, 0, -4)
  8. top1 = Crop(0, 0, 0, 1 - Height()).Tweak(cont=0.990)
  9. top2 = Crop(0, 1, 0, 2 - Height()).Tweak(cont=1.04)
  10. top3 = Crop(0, 2, 0, 3 - Height()).Tweak(cont=0.996)
  11. top4 = Crop(0, 3, 0, 4 - Height())#.Tweak(cont=0.98)
  12. bottom4 = Crop(0, Height() - 4, 0, -3)#.Tweak(cont=1.97)
  13. bottom3 = Crop(0, Height() - 3, 0, -2)#.Tweak(cont=1.07)
  14. bottom2 = Crop(0, Height() - 2, 0, -1).Tweak(cont=1.01)
  15. bottom1 = Crop(0, Height() - 1, 0, -0).Tweak(cont=0.97)
  16. StackVertical(top1, top2, top3, top4, base, bottom4, bottom3, bottom2, bottom1)
  17.  
  18. base1 = Crop(4, 0, -0, 0)
  19. left1 = Crop(0, 0, 1 - Width(), 0).Tweak(cont=1.02)
  20. left2 = Crop(1, 0, 2 - Width(), 0).Tweak(cont=1.02)
  21. left3 = Crop(2, 0, 3 - Width(), 0)#.Tweak(cont=0.97)
  22. left4 = Crop(3, 0, 4 - Width(), 0)#.Tweak(cont=1.02)
  23. StackHorizontal(left1, left2, left3, left4, base1)
  24.  
  25. base2 = Crop(0, 0, -4, 0)
  26. right1 = Crop(Width() - 1, 0, -0, 0).Tweak(cont=1.02)
  27. right2 = Crop(Width() - 2, 0, -1, 0).Tweak(cont=0.98)
  28. right3 = Crop(Width() - 3, 0, -2, 0).Tweak(cont=1.03)
  29. right4 = Crop(Width() - 4, 0, -3, 0)#.Tweak(cont=1.05)
  30. StackHorizontal(base2, right4, right3, right2, right1)
  31.  
  32. ConvertToYV12()
  33. Overlay(last, safe, x=4, y=4)
  34. trim(0,108439).BalanceBorders(3,3,3,3)+trim(108440,0)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement