Advertisement
trds

Untitled

Sep 22nd, 2021
112
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 2.06 KB | None | 0 0
  1. LoadPlugin("D:\Encode\DG\DGDecodeNV.dll")
  2. DGSource("D:\encode\faceoff.dgi")
  3. crop(0,130,0,-130)
  4. FillMargins(1,1,1,1)
  5.  
  6. #######################################################
  7.  
  8. safe = Crop(0, 4, 0, -4)
  9. ConvertToYV24()
  10.  
  11. base1 = Crop(0, 4, 0, 0)
  12.  
  13. t1 = Crop(0, 0, 0, 1 - Height()).Tweak(cont=1.05)
  14. t2 = Crop(0, 1, 0, 2 - Height()).Tweak(cont=1.05)
  15. t3 = Crop(0, 2, 0, 3 - Height()).Tweak(cont=1.01)
  16. t4 = Crop(0, 3, 0, 4 - Height()).Tweak(cont=0.975)
  17. StackVertical(t1, t2, t3, t4, base1)
  18.  
  19. base2 = Crop(0, 0, 0, -4)
  20.  
  21. b1 = Crop(0, Height() - 1, 0, 0).Tweak(cont=1.05)
  22. b2 = Crop(0, Height() - 2, 0, -1).Tweak(cont=1.05)
  23. b3 = Crop(0, Height() - 3, 0, -2).Tweak(cont=1.01)
  24. b4 = Crop(0, Height() - 4, 0, -3).Tweak(cont=0.975)
  25. StackVertical(base2, b4, b3, b2, b1)
  26.  
  27. ConvertToYV12()
  28.  
  29. Overlay(last, safe, x=0, y=4)
  30.  
  31. #########################################################
  32.  
  33. safe = Crop(6, 0, -6, 0)
  34. ConvertToYV24()
  35.  
  36. base1 = Crop(6, 0, 0, 0)
  37. left1 = Crop(0, 0, 1 - Width(), 0).Tweak(cont=2.03)
  38. left2 = Crop(1, 0, 2 - Width(), 0).Tweak(cont=2.03)
  39. left3 = Crop(2, 0, 3 - Width(), 0).Tweak(cont=1.14)
  40. left4 = Crop(3, 0, 4 - Width(), 0).Tweak(cont=0.98)
  41. left5 = Crop(4, 0, 5 - Width(), 0).Tweak(cont=0.98)
  42. left6 = Crop(5, 0, 6 - Width(), 0).Tweak(cont=1.02)
  43. StackHorizontal(left1, left2, left3, left4, left5, left6, base1)
  44.  
  45. base2 = Crop(0, 0, -6, 0)
  46. right1 = Crop(Width() - 1, 0, -0, 0).Tweak(cont=2.03)
  47. right2 = Crop(Width() - 2, 0, -1, 0).Tweak(cont=2.03)
  48. right3 = Crop(Width() - 3, 0, -2, 0).Tweak(cont=1.14)
  49. right4 = Crop(Width() - 4, 0, -3, 0).Tweak(cont=0.98)
  50. right5 = Crop(Width() - 5, 0, -4, 0).Tweak(cont=0.96)
  51. right6 = Crop(Width() - 6, 0, -5, 0).Tweak(cont=1.01)
  52. StackHorizontal(base2, right6, right5, right4, right3, right2, right1)
  53.  
  54. ConvertToYV12()
  55. Overlay(last, safe, x=6, y=0)
  56.  
  57. ####################################################################
  58.  
  59. Fixer(3,2,3,2)
  60.  
  61. ####################################################################
  62.  
  63.  
  64. spline36resize(1280,546,1,1,-1,-1)
  65.  
  66. ###################################################################
  67.  
  68.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement