Android overlay video recording

Can I record video with overlay? While recording a video, I displayed one small image in overlay mode. What I want to do is what I want this overlay image along with the recorded video. Therefore, when I open this recorded video, I can also see this overlapping image recorded from the video.

Friends, I need this solution as soon as possible. Please suggest the right solution :)

+3
source share
1 answer

Unfortunately, in the current Android API there is no way to install between the camera input and the encoder. Any solution would include capturing frames from a video source, overlaying an additional image, and then turning on an encoder for captured frames. Even in native code with NEON optimization in a fast system, this will be a slow process. Alternatively, the entire stream may be further processed in a similar manner, but a decoder will also be required.

+1
source

All Articles