


Hello Readers, If you want to break a large video into the two or more smaller clips without using re-encoding, just now ffmpeg can help you for the same. Like convert all your video files to mp4 with custom ffmpeg commands. And as it's a command line converter can you batch convert all your files at once with a basic windows/dos script. With ffmpeg can you convert and multiplex almost every video file.

ffmpeg -i invid.mp4 -threads 3 -vcodec copy -f segment -segment_time 2 cam_out_h264%04d.mp4 This will split it into roughly 2 second chucks, split at the relevant keyframes, and will output to the files cam_out_h2640001.mp4, cam_out_h2640002.mp4, etc. Just use what is built into ffmpeg to do exactly this.
