-1

Hi want to create a android app in which user can capture video. While capturing the video, a watermark should be shown in each frame, such that when the video is played afterwards it has an embedded watermark.

Has anyone worked on this before?

Jeru Luke
  • 20,118
  • 13
  • 80
  • 87
linson
  • 9
  • 6
  • While questioning do not explicitly ask for code, First tell the community what you have done and then share the error you have faced. – Jeru Luke Jan 14 '17 at 11:44
  • Do visit [THIS POST](http://www.pyimagesearch.com/2016/04/25/watermarking-images-with-opencv-and-python/) for more – Jeru Luke Jan 14 '17 at 12:01
  • I already work with opencv image processing in android. But i need the same for videos ? Capture video and processing on each frames . – linson Jan 15 '17 at 13:09

1 Answers1

0

To embed a watermark, you need to have an image with 4 channels namely: Red, Blue, Green and Alpha (transparency). All you have to do is extract this alpha channel and overlay it on top of the frames in the video.

How do you overlay an image?

Visit THIS POST where I have linked the solution.

Community
  • 1
  • 1
Jeru Luke
  • 20,118
  • 13
  • 80
  • 87