15 second clip
ffmpeg -i in.mp4 -t 00:00:15 in_15s.mp4
clip to exact frames
ffmpeg.exe -i in.mp4 -vf "select=between(n\,100\,395),setpts=PTS-STARTPTS" -an out.mp4
15 second clip
ffmpeg -i in.mp4 -t 00:00:15 in_15s.mp4
clip to exact frames
ffmpeg.exe -i in.mp4 -vf "select=between(n\,100\,395),setpts=PTS-STARTPTS" -an out.mp4
:again | |
if "%~1" == "" GOTO done | |
ffmpeg.exe -i "%~1" -t 00:00:15 "%~n1_clip%~x1" | |
SHIFT | |
GOTO again | |
:done |