I am trying to put some animated layers on top of videos using the AVVideoCompositionCoreAnimationTool
. The speeds of the animations rendered are not consistent across all devices, ie I am forced to use different duration/fps for the
CABasicAnimation
different devices like for iPhone 6 I have a duration of .5 while for iPod Touch 5G I am using .25 ,
composition.animationTool = [AVVideoCompositionCoreAnimationTool
videoCompositionCoreAnimationToolWithPostProcessingAsVideoLayer:videoLayer inLayer:parentLayer];
Anyone faced this issue before?