Advertisement
Guest User

AVS Skript

a guest
Oct 9th, 2015
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.96 KB | None | 0 0
  1. ### SagaraS Scriptmaker - Debug Version 6.0 ###
  2.  
  3. ### Lade Plugins und setze die globalen Variablen ###
  4. Global breite = 1920
  5. Global hoehe = 1200
  6. Global AR = 0
  7.  
  8. ### Lade Videoquellen ###
  9. AVIload("E:\Premiere-Dateien\portal 2 coop\portal.avi", 0, 0, 0, -0, -0, "Auto", "Auto", 0, 0)
  10.  
  11. ### Filter Verarbeitungszone ###
  12. last.Trim(0, 60852)
  13.  
  14. ### Funktion für Video-Laderoutine ###
  15. Function AVIload (String file, int loading, int cl, int co, int cr, int cu, string pixtype, string afps, int fpsn, int fpsd) {
  16. (loading == 1) ? FFIndex(file) : nop()
  17. clip0 = (loading == 3) ? LWLibavVideoSource(file) : (loading == 2) ? Import(file).KillAudio() : (loading == 1) ? FFVideoSource(file, threads=1) : (pixtype == "Auto") ? AVISource(file, false).KillAudio() : AVISource(file, false, pixel_type=pixtype).KillAudio()
  18. clip1 = clip0.AutoFPS(afps, fpsn, fpsd).Cropping(cl, co, cr, cu)
  19. Return (clip1.width == breite && clip1.height == hoehe) ? clip1.ConvertToRGB24(matrix = "Rec709") : Clip1.Resize()
  20. }
  21.  
  22. Function AutoFPS (Clip clip0, string afps, int fpsn, int fpsd) {
  23. rate1 = (afps == "Auto") ? (Round(Float(clip0.framerate * 1000)) / 1000) / 2 : nop()
  24. rate2 = (afps == "Auto") ? Round(clip0.framerate) / 2 : nop()
  25. rate = (afps == "Auto") ? (rate1 == rate2) ? 1 : 1001 : (afps == "Igno.") ? clip0.frameratedenominator : fpsd
  26. ratefaktor = (afps == "Auto") ? (rate == 1001) ? 1000 : 1 : nop()
  27. clip0 = (afps == "Auto") ? (rate == 1001) ? clip0.AssumeFPS(Round(clip0.Framerate) * 1000, rate) : clip0.AssumeFPS(round(clip0.framerate), rate) : (afps == "Igno.") ? clip0.AssumeFPS(clip0.frameratenumerator, rate) : clip0.AssumeFPS(fpsn, rate)
  28. Return clip0
  29. }
  30.  
  31. Function Cropping (Clip clip0, int cl, int co, int cr, int cu) {
  32. clip0 = (clip0.IsRGB32() == True) ? clip0.ConvertToRGB24() : clip0
  33. Return (cl != 0 || co != 0 || cr != 0 || cu != 0) ? clip0.Crop(cl, co, cr, cu) : clip0
  34. }
  35.  
  36. Function Resize (Clip clip1) {
  37. clip1 = (AR == 1) ? ((float(Clip1.height * breite) / clip1.width) / 2 == round((float(Clip1.height * breite) / clip1.width) / 2)) ? ((float(Clip1.width * hoehe) / clip1.height) / 2 == round((float(Clip1.width * hoehe) / clip1.height) / 2)) ? clip1 : clip1.ConvertToRGB24() : clip1.ConvertToRGB24() : clip1
  38. clip1 = (AR == 1) ? (((clip1.width * hoehe) / clip1.height > breite) ? Clip1.Spline36Resize(breite, round(float(Clip1.height * breite) / clip1.width)) : Clip1.Spline36Resize(round(float(clip1.width * hoehe) / clip1.height), hoehe)) : clip1.Spline36Resize(breite, hoehe).ConvertToRGB24(matrix = "Rec709")
  39. back = (AR == 1) ? (0 == 1) ? ImageReader("", 0, clip1.framecount - 1, clip1.framerate).ChangeFPS(clip1.frameratenumerator, clip1.frameratedenominator).Spline36Resize(breite, hoehe).ConvertToRGB24(matrix = "Rec709") : BlankClip(clip1, width = breite, height = hoehe, pixel_type = "RGB24").KillAudio() : clip1
  40. Return (AR == 1) ? Overlay(back, clip1, (back.width - clip1.width) / 2, (back.height - clip1.height) / 2) : clip1
  41. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement