views:

71

answers:

1

So I am looking for a way to watermark videos uploaded to my site programmatically. I have looked at ffmpeg-php however this will not work as I am using shared linux hosting. I'm wondering if anyone knows of a way that I can programmatically add a watermark to mp4 videos kind of how you do with the GD lib in php.

Has anyone successfully done this or does anyone know of a utility that will work on shared hosting?

A: 

You wouldn't be able to do this on shared hosting unless they provided ffmpepg support. Ffmpeg would also have to be compile with vhooks enabled and the watermark.so library.

buggedcom
is ffmpeg the only solution you are aware of? Do you know how youtube does theirs?
jostster
no there are other alternatives, however I can't imagine any of them are available on a shared host. Encoding videos takes a lot of cpu power. FFmpeg would be the easiest root.
buggedcom