I have several training videos. All .MP4s.
I want to remove 3.5 seconds from the beginning and 4.5 seconds from the end of the entire folder of them...
I know of ffmpeg and ffprobe - but my knowledge and mastery of them both is limited.
Can someone provide a script for this, or, at least a program that will make this easy for me? I keep searching and I reach dead-ends everytime or scripts that do not work.
I am also open to using Linux/Windows but not mac.
edit: First part completed. Will keep on studying this command further in order to learn batch; Here's the easy part, how to batch trim an entire folder of MP4s:
for %%a in ("*.mp4") do ffmpeg -i "%%a" -ss 00:00:03.5 -vcodec copy -acodec copy "newfiles\%%~na.mp4"
pause