Advertisement
trds

Untitled

Sep 10th, 2021
148
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 1.15 KB | None | 0 0
  1. LoadPlugin("D:\Encode\DG\x64 Binaries\DGDecodeNV.dll")
  2. DGSource("D:\encode\gangster.dgi")
  3. crop(0,20,-2,-20)
  4. Fillmargins(0,0,1,0)
  5.  
  6. ConditionalFilter(last, dirty, "SceneType", "<", "1")
  7. ConditionalReader("D:\encode\scenes.txt", "SceneType")
  8.  
  9. function dirty (clip c) {
  10. safe = c.Crop(6, 0, -6, 0)
  11. c.ConvertToYV24()
  12.  
  13. base1 = Crop(6, 0, 0, 0)
  14. left1 = Crop(0, 0, 1 - Width(), 0).Tweak(cont=1.01)
  15. left2 = Crop(1, 0, 2 - Width(), 0)
  16. left3 = Crop(2, 0, 3 - Width(), 0)
  17. left4 = Crop(3, 0, 4 - Width(), 0)
  18. left5 = Crop(4, 0, 5 - Width(), 0)
  19. left6 = Crop(5, 0, 6 - Width(), 0)
  20. StackHorizontal(left1, left2, left3, left4, left5, left6, base1)
  21.  
  22. base2 = Crop(0, 0, -6, 0)
  23. right1 = Crop(Width() - 1, 0, -0, 0).Tweak(cont=1.16)
  24. right2 = Crop(Width() - 2, 0, -1, 0).Tweak(cont=1.16)
  25. right3 = Crop(Width() - 3, 0, -2, 0).Tweak(cont=0.975)
  26. right4 = Crop(Width() - 4, 0, -3, 0).Tweak(cont=1.08)
  27. right5 = Crop(Width() - 5, 0, -4, 0)
  28. right6 = Crop(Width() - 6, 0, -5, 0).Tweak(cont=1.03)
  29. StackHorizontal(base2, right6, right5, right4, right3, right2, right1)
  30.  
  31. ConvertToYV12()
  32. Overlay(last, safe, x=6, y=0)
  33. return last
  34. }
  35.  
  36. spline36resize(1280,694,0,0,-1,0)
  37.  
  38.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement