Here is the command that I am using to add a logo to a stream
avconv -f alsa -i pulse -f x11grab -s hd720 -i :1.0+nomouse -vf "movie=logo.png [watermark]; [in][watermark] overlay=10:10 [out]" -acodec libvo_aacenc -vcodec libx264 -threads auto -f flv rtmp://server
How can I add a second picture to the stream? Is there a way to do this without using -filter_complex as it's not available?
Thank you.