Is there a Windows program that can convert a bunch of videos and output in FLV format as well as include a watermark?

link|improve this question
feedback

3 Answers

The first thing that comes to mind is FFmpeg.

For watermarking, it is something like:

ffmpeg -i input.avi -vhook 'vhook/imlib2.so -x 0 -y 0 -i overlay.png' output.avi

Where overlay.png is the watermark.

What you basically want to do is to put this in your workthrough and run it on every file in the project, and it should do the job.

link|improve this answer
feedback

You can create a script with Java using Xuggle as explained here http://stackoverflow.com/questions/1559691/ffmpeg-watermark-without-vhook

Another a very popular tool is ffmpeg so you can google for ffmpeg watermark and get a lot of ways of doing it.

link|improve this answer
feedback

Yes, use FFMPEG. You'll need to use the -vhook switch and specify watermark.dll.

then you can make a batch script for example:

cd "C:\path\to\videos"
for /r %%i in (*) do @ffmpeg -i %%i -vhook "C:/ffmpeg/bin/vhook/watermark.dll -m 1 -f watermark.png" -ar 44100 %%i.flv

replace C:\path\to\videos with the folder containing the video files.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown