Home » Questions » Computers [ Ask a new question ]

Mass convert videos to FLV format with watermarking in Windows

Mass convert videos to FLV format with watermarking in Windows

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

Asked by: Guest | Views: 351
Total answers/comments: 1
Guest [Entry]

"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."