I know about the AVVideoCompositionCoreAnimationTool
method for using basic animations, and I made it work with AVMutableComposition
, but I'm looking for a way to make the same animations through AVAssetWriter
. Basically I want to create CAAnimation
(s) and use the AVAssetWriter
buffer AVAssetWriter
as an animation synchronization method. Then draw animated properties for each frame.
Is this even possible? Any guidance in the right direction would be appreciated.
Edit: If you're interested, why not just use the AVAssetExportSession
instead, because my requirements do not allow me to use compression presets, plus I need to use CIFilter
, which cannot be used currently with CALayer
on iOS.
source share