I'm looking to see if there is a way to capture the entire output of a quartz composer scene, or it could even be a scene within a macro patch, and use it as the input to another patch that accepts an image. My use case is an image filter that overlays something dynamically generated based on the input image.
Quartz Composer - Capture output of composition as input to another patch
80 views Asked by lightbord At
1
Yes, you can do it but not in QuartzComposer.app
To capture a
video/audio/imagesfrom some QC patches you should use AVCaptureSession and AVCapturePhotoOutput classes fromAVFoundationframework in Xcode. Then you can easily pass this data to another QC patches. Of course, you need to have a good knowledge of Swift or Obj-C.