I need to create a water mark on videos getting uploaded into the site , can any one help?

Devaraj

Comments

newbie88’s picture

using module photoshop sir

vm’s picture

photoshop isn't the answer for watermarking videos.

you'll want to investigate ffmpeg = http://www.ffmpeg.org/ and whether or not your server will support it. here is a method to do it manually = http://www.linuxjournal.com/video/add-watermark-video-ffmpeg

I assume you will want to do it automatically which will require some research on your part.

newbie88’s picture

sorry is it like watermark in video using youtube sir hahahaha

Devaraj’s picture

Thanks.. Is there any drupal contributed module for this?

vm’s picture

specifically for watermarking videos? I don't believe so but you should research it as best you can.

there is the ffmpeg.module in the repo that may aid.

Devaraj’s picture

Water Marking videos on upload is feasible using the Drupal modules

http://drupal.org/project/ffmpeg_converter
http://drupal.org/project/ffmpeg_wrapper

Make sure ffmpeg installed on your server and the simple unix command does this water marking

ffmpeg -sameq -i video1.mp4 -vhook '/usr/lib/vhook/watermark.so -f water_mark_img.jpg' video2.mp4

video1 - Video to be water marked
water_mark_img.jpg - Your image to be used as a water marking
video2 - your water marked image

you dont need to worry on executing this command, its given just to have an idea, your Drupal modules will take care of all these if it is configured properly

PS:

Please make sure

  • The dimensions of the image and video
  • Check the exact path of 'weatermark.so'

Thanks
Devaraj
Senior Developer
Group Fmg