Alexey
Alexey
Same as [here](https://github.com/VideoFlint/Cabbage/issues/66). But if you need animated background you should not specify single image as a background, rather blurring `sourceImage` e.g.: ```swift sourceImage.composited(over: sourceImage.applyBlur()) ``` > `applyBlur` is not...
And this is possible implementation for image blaring if that is what you needed (it is not clear from your questions): ```swift extension CIImage { convenience init(color: UIColor) { self.init(color:...
I think you just don't see it, because blurred image is hidden underneath the source image. I'm not a guru in `AVFoundation` so try playing with transforms. I tried to...
There is **Overlay Demo**. Text should be rendered to an image and then added as overlay Everything should be implemented by yourself. And then applied to timeline. For example: You...
In my case I added blurred background of a first frame like this: ```swift let timeline = Timeline() ... let blurredFirstFrame: CIImage = ... timeline.passingThroughVideoCompositionProvider = BackgroundComposition(backgroundImage: blurredFirstFrame) ``` ```swift...
Try this solution: IFlingRunnable: Add int updateX(int x); in FlingRunnableView interface Change int x = getCurrX(); line with int x = mParent.updateX(getCurrX()); Add to HorizontalVariableListView: @Override public int updateX(int x)...