Email or username:

Password:

Forgot your password?
Top-level
sam henri gold

Some implementation details: In the original product from 2003, each dancer had two videos — the dancer on a black background and a white-on-black matte. This saved a ton of space on the CD-ROM since transparent videos were (and still are) enormous. They would just composite them together on the system to make a transparent video. I’m doing the same thing in my implementation. I use an AVMutableComposition to sync up the two video tracks and handle the timeline-y stuff...

1 comment
sam henri gold

...and for the actual frame-by-frame compositing, I’m leaning on AVVideoCompositing. The custom compositor uses CIBlendWithMask to blend the main video with the matte. I’ve never dug super deep into AVFoundation, I was kinda surprised by how easy it was to do this (~70 lines). Most of the work here was just setting up the scaffolding around it. I didn’t need to dive into shader land or anything of the sort. github.com/samhenrigold/MacPlu

Go Up