I am currently using this command to cut the first 10 seconds of all videos in a folder so the output is the whole video minus first 10 seconds.
FORFILES /M "*.mkv" /c "cmd /c ffmpeg -ss 10 -i ^"@file^" -c copy -map 0 ^"done\\@file^""
I am also using this command to remove the watermark from a specified video:
ffmpeg -i input.mkv -vf delogo=x=11:y=9:w=152:h=32 -c:a copy output.mkv
My question is how to make these two commands into one? I want to be able to trim + remove watermark in one go.
Thanks in advance!