The command breaks down: -i input.mp4Specifies the input video file. -vf "select=not(mod(n\,5)),setpts=N/FRAME_RATE/TB" Uses a video filter to select every 5th frame. The select=not(mod(n\,5)) part selects every 5th frame, and setpts=N/FRAME_RATE/TB sets the...
