If you use FFMpeg, it is very easy to split files with it. Do not use Media Segmenter. Just write something like this:
ffmpeg.exe -i YourFile.mp4 -ss 00:10:00 -t 00:05:00 OutFile.mp4
where -ss 00:10:00 is the time offset, -t 00:05:00 is the duration of OutFile.mp4. This will create OutFile.mp4 that contains the 5 minute video (-t 00:05:00) YourFile.mp4
(from 00:10:00 to 00:15:00 of YourFile.mp4).
Useful?)
And also you can create a .ASX playlist that is capable of creating streams and is very simple.
source share