Created
May 23, 2017 20:17
-
-
Save LeifAndersen/3fae04a1bb19dc9eb08effe4aab103d8 to your computer and use it in GitHub Desktop.
video sample
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #lang video | |
| (require video/core) | |
| (define screen | |
| (make-producer #:type 'avformat | |
| #:source "test.mov" | |
| #:prop (hash "video_index" | |
| 0))) | |
| (define camera | |
| (make-producer #:type 'avformat | |
| #:source "test.mov" | |
| #:prop (hash "video_index" | |
| 2))) | |
| (multitrack camera | |
| screen | |
| #:transitions (list (composite-transition 0 0 1/4 1/4 | |
| #:top camera | |
| #:bottom screen))) | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment