Water marking / converting video formats is quite simple in Drupal and following contributed modules helps to achieve the same
Before installing both these modules, make sure ffmpeg is downloaded and installed on your server, you can confirm ffmpeg installed on your server by referring configuration page of the above mentioned modules.
On the back ground the following unix command will execute for you to convert / water mark your video
ffmpeg -sameq -i video1.mp4 -vhook '/usr/lib/vhook/watermark.so -f water_mark_img.jpg' video2.mp4
Where,
video1 is Video to be water marked
water_mark_img.jpg is your image to be used as a water marking
video2 is your water marked video (output)
you dont need to worry on executing this command, its given just to have an idea of how it works, your Drupal modules will take care of all these if it is configured properly
Please make sure
- The dimension / canvas size of the video and water marking image
- Check the exact path of ffmpeg installed and where 'watermark.so' file seated
Thanks
Devaraj