Is there a Windows program that can convert a bunch of videos and output in FLV format as well as include a watermark?
|
|
The correct way to do this with recent ffmpeg is to use the overlay filter. The following command will place
Obviously, change 15 or 10 to whatever values you want. There are also a few constants you may find useful, if you're putting watermarks on multiple videos with separate resolutions:
These can come in handy many times. For example, to place the watermark over the centre of the video, you could use:
Similarly, to centre the watermark over the upper-left sixth of the video:
For the lower-left sixth of the video:
You can pretty much do whatever you need to. See the overlay filter documentation for more information. |
|||||
|
|
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. |
|||
|
|
|
The first thing that comes to mind is FFmpeg. For watermarking, it is something like:
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. |
|||||
|
|
Yes, use FFMPEG. You'll need to use the then you can make a batch script for example:
replace |
||||
|
|