In my Application I need to capture a video and Put a watermark on that video. The watermark should be Text(Time and Notes). I saw a code using "QTKit" Frame work. However I read that the framework is not available for iPhone.
Thanks in Advance.
|
In my Application I need to capture a video and Put a watermark on that video. The watermark should be Text(Time and Notes). I saw a code using "QTKit" Frame work. However I read that the framework is not available for iPhone. Thanks in Advance. |
|||
|
|
|
Use Search around stack overflow, there are a ton of fantastic examples detailing how to do each of these things I have mentioned. I haven't seen any that give code examples for exactly the effect you would like, but you should be able to mix and match pretty easily. EDIT: Take a look at these links: http://www.benjaminloulier.com/articles/ios4-and-direct-access-to-the-camera -this is a really great tutorial that, among other topics, details exactly how to use iPhone: AVCaptureSession capture output crashing (AVCaptureVideoDataOutput) -this post might be helpful just by nature of containing less non-relevant code. But the examples there won't work on their own, so see the first link.
From there you would convert to a UIImage, How do I export UIImage array as a movie? -This post shows how to add the UIImages you have processed to a video for a given duration. This should get you well on your way to watermarking your videos. Remember to practice good memory management, because leaking images that are coming in at 20-30fps is a great way to crash the app. good luck! |
|||||||||
|
|
Adding a watermark is quite more simple. You just need to use a CALayer and AVVideoCompositionCoreAnimationTool. The code can be just copied and assembled in the same order. I have just tried to insert some comments in between for better understanding. Let's assume you recorded the video already so we are going to create the AVURLAsset first:
With just this code you would be able to export the video but we want to add the layer with the watermark first. Please note that some code may seem redundant but it is necessary for everything to work. First we create the layer with the watermark image:
If we don't want an image and want text instead:
The following code sorts the layer in proper order:
Now we are creating the composition and add the instructions to insert the layer:
And now we are ready to export:
|
|||||||||||||
|
|
Simply Download the code and Use it.It is in Apple developer documentation Page. |
|||
|
|