I have two different sets of ffmpeg commands working that I would like to try to combine.
The first command is a basic "concat" command:
ffmpeg -i "concat:file01.mpg|file02.mpg|file03.mpg" -c copy -target pal-dvd newfile.mpg
The second adds a watermark:
ffmpeg -i newfile.mpg -i full_page_watermark.png -filter_complex "overlay=0:0" -target pal-dvd newfilewatermark.mpg
Question:
How would I combine these two commands? Or is it necessary to first create the intermediate file as I am presently doing?