I want to Trim lot of videos in Bulk using FFMPEG

for %%A in (*.mkv) do ffmpeg -i "%%A" -ss 7 -t 45 "output\%%A"

Pause


But i can specify the end time because all of my videos has different length ..

(i just want to remove a 7 sec intro from all the videos)