0
I have two videos, one PNG logo and one subtitle file (.ass)
What I'm trying to achive is to merge all these into a single mp4 file.
I can do the logo and subtitle with a single video, but I would like to add a short intro video into it while encoding too.
I'm using this code for watermarking and burning subtitles.
ffmpeg -i video.mp4 -i server-logo.png -filter_complex "[0][1]overlay=1083:0,subtitles=subtitle.ass" -c:a copy output.mp4
But it's should be something like this .
Intro > Main Video&Subtitle&Logo
Please note that intro has sound and logo should appear with the main video. Not with the intro, which is exactly 10 seconds.