Advertisement
trds

Untitled

Nov 30th, 2021
914
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.91 KB | None | 0 0
  1. LoadPlugin("D:\Encode\DG\DGDecodeNV.dll")
  2. DGSource("D:\encode\scream3.dgi")
  3. crop(0,126,0,-126)
  4. safe = Crop(0, 6, 0, -6)
  5. ConvertToYV24()
  6.  
  7. base1 = Crop(0, 6, 0, 0)
  8.  
  9. t1 = Crop(0, 0, 0, 1 - Height()).Tweak(cont=1.65)
  10. t2 = Crop(0, 1, 0, 2 - Height()).Tweak(cont=1.24)
  11. t3 = Crop(0, 2, 0, 3 - Height()).Tweak(cont=1.10)
  12. t4 = Crop(0, 3, 0, 4 - Height())
  13. t5 = Crop(0, 4, 0, 5 - Height()).Tweak(cont=1.10)
  14. t6 = Crop(0, 5, 0, 6 - Height()).Tweak(cont=1.10)
  15. StackVertical(t1, t2, t3, t4, t5, t6, base1)
  16.  
  17. base2 = Crop(0, 0, 0, -6)
  18.  
  19. b1 = Crop(0, Height() - 1, 0, 0).Tweak(cont=1.75)
  20. b2 = Crop(0, Height() - 2, 0, -1).Tweak(cont=1.24)
  21. b3 = Crop(0, Height() - 3, 0, -2).Tweak(cont=1.10)
  22. b4 = Crop(0, Height() - 4, 0, -3)
  23. b5 = Crop(0, Height() - 5, 0, -4).Tweak(cont=1.10)
  24. b6 = Crop(0, Height() - 6, 0, -5).Tweak(cont=1.10)
  25. StackVertical(base2, b6, b5, b4, b3, b2, b1)
  26.  
  27. ConvertToYV12()
  28.  
  29. Overlay(last, safe, x=0, y=6)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement