Advertisement
Nofew

Untitled

May 29th, 2012
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. clip1 = imagesource("X:\path\to\first\image\sequence\name_%03d.png", end = 999, fps = 60)
  2. clip2 = imagesource("X:\path\to\second\image\sequence\name_%03d.png", end = 999, fps = 60)
  3.  
  4. clip12 = separatefields(clip1)
  5. clip22 = separatefields(clip2)
  6.  
  7. clip13 = selecteven(clip12)
  8. clip23 = selectodd(clip22)
  9.  
  10. clip3 = interleave(clip13, clip23)
  11.  
  12. clip4 = assumefieldbased(clip3)
  13.  
  14. weave(clip4)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement