I have an image. I have a transparent FLV. I want to use the image as a background to the transparent FLV and have it outputted as FLV.
This command works but the video is one frame long:
ffmpeg -i background.png -f flv -vcodec flv -b 1500k -vf "movie=test_videos/alpha.flv [logo]; [in][logo] overlay=0:0 [out]" -s 800x464 -y output.flv
I have tried to use the -t and -vframes parameters to no avail.
Does anyone have any tips?