I just tried a 45 minute documentary, didn't even show. perhaps the 10mins is for playback also
Wonder if there away to get around this. This must be Nintendo way of saying "don't download movies".
So is there away to break down downloaded videos into 10 mins parts?
One way you could do that is, in a batch file, make duplicates of the processes going, but for each unique set, designate the starting time and duration via "-ss hh:mm:ss -t hh:mm:ss", -ss being the starting position and -t being the duration. Depending on the video, anything past the initial position will require ffmpeg to scan through the video file from start to the starting position you request, resulting in repeated "frame = 0" lines. It'll get to the positions in time.
EDIT:
However, if you used a video that is 15min long, but your batch file is prepared to take up to 30min (3 unique ffmpeg calls), and you split them into 10min sections, the first will go fine, the 2nd will scan to the 10min mark (taking some time, but not as long as encoding) and will end at the 15min mark. The 3rd will scan to the 15min mark and just quit. You'll end up with 3 videos, but the last will be really small because it contains nothing.