FFMPEG Concat Video, Add Subtitle & Logo

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.

Sedat Şahin

Posted 2019-12-15T09:29:42.327

Reputation: 1

Question was closed 2019-12-16T20:07:01.023

No answers