Skip to content

Instantly share code, notes, and snippets.

@LeifAndersen
Created May 23, 2017 20:17
Show Gist options
  • Select an option

  • Save LeifAndersen/3fae04a1bb19dc9eb08effe4aab103d8 to your computer and use it in GitHub Desktop.

Select an option

Save LeifAndersen/3fae04a1bb19dc9eb08effe4aab103d8 to your computer and use it in GitHub Desktop.
video sample
#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