Advertisement
Guest User

Untitled

a guest
May 23rd, 2017
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.60 KB | None | 0 0
  1. #lang video
  2.  
  3. (require video/core)
  4.  
  5. (define screen
  6. (make-producer #:type 'avformat
  7. #:source "test.mov"
  8. #:prop (hash "video_index"
  9. 0)))
  10.  
  11. (define camera
  12. (make-producer #:type 'avformat
  13. #:source "test.mov"
  14. #:prop (hash "video_index"
  15. 2)))
  16.  
  17. (multitrack camera
  18. screen
  19. #:transitions (list (composite-transition 0 0 1/4 1/4
  20. #:top camera
  21. #:bottom screen)))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement