Reputation: 533
I would like to know if there is any way to add a watermark to a video which is currently recording and save it with the watermark. (I know about adding watermarks to video files that are already available in app bundle and exporting it with watermark).
iPhone Watermark on recorded Video.
I checked this link. Accepted answer is not good one. The most voted answer is applicable only if there is already a video file in your bundle. (Please read the answer before suggesting that.)
Thanks in advance
Upvotes: 3
Views: 2549
Reputation: 533
For this purpose its better to use GPUImage
library (An open source library available in Git hub), It contains so many filter and its possible add overlay using GPUImageOverlayBlendFilter
. That contains sample FilterShowCase
that explains lot about using the filters. It uses GPU so that it takes the overhead of processing the image. The full credits goes to @Brad Larson the one who created such a great library.
Upvotes: 5