I want to split a large .mp4 video(length is unknown) into multiple small .mp4 videos. But I want to do it by dividing the length of the video by the number of parts required e.g:
largevideo.mp4 = 4 Minutes
n = 2
then I will have a two, 2 minutes small.mp4 video. Wherever I am looking is giving me a time-based splitting, while I want to do number-based splitting using FFmpeg. Can anybody help?