Advertisement
trds

Untitled

Jun 22nd, 2022
1,049
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.73 KB | None | 0 0
  1. LoadPlugin("D:\Encode\DG\DGDecodeNV.dll")
  2. DGSource("D:\encode\massivetalent.dgi", show=true, show2="2,120,Source")
  3. crop(0,138,-0,-138)
  4.  
  5. safe = Crop(0, 4, 0, -4)
  6. ConvertToYV24()
  7.  
  8. base1 = Crop(0, 4, 0, 0)
  9.  
  10. t1 = Crop(0, 0, 0, 1 - Height()).Tweak(cont=2)
  11. t2 = Crop(0, 1, 0, 2 - Height()).Tweak(cont=0.93)
  12. t3 = Crop(0, 2, 0, 3 - Height()).Tweak(cont=1.02)
  13. t4 = Crop(0, 3, 0, 4 - Height())
  14. StackVertical(t1, t2, t3, t4, base1)
  15.  
  16. base2 = Crop(0, 0, 0, -4)
  17.  
  18. b1 = Crop(0, Height() - 1, 0, 0).Tweak(cont=2)
  19. b2 = Crop(0, Height() - 2, 0, -1).Tweak(cont=0.93)
  20. b3 = Crop(0, Height() - 3, 0, -2).Tweak(cont=1.02)
  21. b4 = Crop(0, Height() - 4, 0, -3)
  22. StackVertical(base2, b4, b3, b2, b1)
  23.  
  24. ConvertToYV12()
  25.  
  26. Overlay(last, safe, x=0, y=4)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement