I am trying to merge two videos together, both have transparency, using the command
ffmpeg.exe -i person2.mov -vf "[in] scale=iw/2:ih/2,fade=out:300:30:alpha=1, pad=2*iw:ih [left]; movie=person2.mov, scale=iw/2:ih/2,fade=out:300:30:alpha=1 [right]; [left][right] overlay=main_w/3:0,fade=out:300:30:alpha=1 [out]" -b:v 768k Output_people.mov
By doing that I get the following output:
http://i263.photobucket.com/albums/ii122/Fernando461/Untitled.png
As you can see, it was possible to get the two videos to be on top of each other. But then, when I try to merge this video (Output_people.mov) with another video, it doesn't have the same transparency. Is it possible to keep transparency in the outcome?
Edit 1:
This is the output I get: https://www.dropbox.com/s/gpid1pptfio31gd/ffmpeg-20130701-193206.log
And by "it doesn't have the same transparecy" I meant that the background is black instead of being transparent, so if I put one video on top of each other, the one in the back is covered by a black part of the one in the front.
Edit 2: Adding -vcodec qtrle to the code worked. Thanks mark4o!