Advertisement
MonoS

Your name storyboard sync

Aug 5th, 2017
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 12.06 KB | None | 0 0
  1. import vapoursynth as vs
  2. import nnedi3_resample as edi
  3. core = vs.get_core()
  4.  
  5. def add(clip, start, length):
  6.     clip = (clip[0:start] + core.std.BlankClip(clip, length=length) + clip[start::]).std.FreezeFrames([start-1], [start+length-1], [start-1])
  7.     return clip
  8. def rem(clip, start, length):
  9.     clip = clip[0:start] + clip[start+length::]
  10.     return clip
  11. src = core.lsmas.LWLibavSource("D:/Temporanei/君の名は。/storyboard.mkv""709", curved="709", kernel="spline64", chromak_up="spline64", fast=False)
  12.  
  13. fin = core.fmtc.bitdepth(res, bits=10, dmode=7)
  14.  
  15. fin.set_output()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement