thecoalman

msg:3926525 | 2:21 pm on Jun 4, 2009 (gmt 0) |
The trouble with going from flv to flv is you'll need to recompress the data, it's just like images and every recompresssion takes a little more out of the original video. I don't use flv so I,m not familiar with the tools for it. Most higher end consumer apps like Video Studio. should be able to do this with standard video. For free and with batch capability Virtual dub will fit the bill but I'm pretty sure it's not going to accept .flv but I may be mistaken. Haven't looked in many years and back in the day MPEG support had just arrived.
|
wrockca

msg:3951752 | 7:35 pm on Jul 13, 2009 (gmt 0) |
You should be able t embed a transparent PNG or Tiff into your video software and then re-render it as an FLV ... this is how I do it with my tools.. Currently I used Sony Vegas and now I use Adobe CS4
|
Lauratoo

msg:3962415 | 11:22 am on Jul 30, 2009 (gmt 0) |
Camtasia 1 is free & does it easily.
|
radix

msg:3980475 | 9:25 am on Aug 29, 2009 (gmt 0) |
Recently I needed this functionality, too, and found that ffmpeg (free software) can do this. It mainly comes uncompiled but there are precompiled Windows versions. Use some SE to find "ffmpeg win32 builds". Choose a version that includes "VHooks". Detailed docs are available on the ffmpeg site. Basic command to add watermark image sampleimage.jpg to your samplevideo.avi: ffmpeg -i samplevideo.avi -vhook "vhook\imlib2.dll -x ((W-w)-10) -y ((H-h)-10) -i sampleimage.jpg" -ar samplevideo_out.flv This command places the image 10px from the right side, 10px from the bottom. Of course you can add path to all the three files involved. Hope this helps.
|
|