Is it possible to make overlaying of video files by ImageMagic?
I used VirtualDub software to make two sequenses of .bmp pictures and placed the files together into common folder.
Background images have name: base_0000.bmp, base_0001.bmp, etc. Overlay images have names: L_0000.bmp, L_0001.bmp, etc.
I have written the text for a batch file of DOS:
Code: Select all
@echo off
echo Hello this is a batch file for overlaying a small picture to a large picture
mkdir over
FOR %%a in (L_*.bmp) DO (
ECHO Processing file: "%%~nxa"
composite -compose Copy -geometry +31+202 %%a base_*.bmp over\over_%%a
)
PAUSE
each file "base_" for other file "L_". Is it possible somehow?
I have used ImageMagick 6.7.0-0 Q16 (2011-06-01) OS: Win XP Sp2
Thanks in advance!