Advertisement
Guest User

Untitled

a guest
Aug 4th, 2015
179
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. import vapoursynth as vs
  2. core = vs.get_core()
  3. import havsfunc as haf
  4. import maskdetail
  5.  
  6. video = core.lsmas.LWLibavSource(r"00007-001.mkv",format="YUV420p8")
  7.  
  8.  
  9.  
  10. video = core.vivtc.VFM(video,order=1)
  11.  
  12. video = core.vivtc.VDecimate(video,dryrun=True)
  13.  
  14. video = core.assvapour.Subtitle(video,str(video.get_frame(15).VDecimateDrop))
  15.  
  16.  
  17. video[0].set_output()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement