Is there a free software I can just input the file and specify it to output segments in mp4?
+ Reply to Thread
Results 1 to 8 of 8
-
-
This can be easily done AFAIK in mkvtoolnix. Only thing you have to do after this is remux to mp4. And there is tons of program that can do this. Avidemux is one of them, but one among plenty of others. I bet ffmpeg can do this directly but I'm not familiar with cli programs.
Edit: The way i mentioned isn't frame accurate. You can split file by size or time and several others way, but it doesn't reencode video, so only can split on keyframes. So not frame accurate. If you want frame accurate split, you have to reencode these parts or use smart rendering support software.
BernixLast edited by Bernix; 1st Sep 2018 at 13:00. Reason: Edit
-
mp4box has a -split-size option in KB
splits are not always "perfect", they are limited by where the keyframe placements are in your source file. So some segments might be slightly larger or smaller.
e.g. if you wanted ~100MB chunks
Code:mp4box -split-size 100000 input.mp4
input_001.mp4
input_002.mp4
input_003.mp4
.
. -
Maybe you have spaces in filenames ? Enclose with quotation marks . Weird characters can cause problems too, it wasn't the space issue you might need to rename the file
Code:mp4box -split-size 100000 "input file.mp4"
Code:for %%a in ("*.mp4") do mp4box -split-size 100000 "%%a" pause
-
Thanks. Yes I do have spaces in file names that could have been a problem. The bat file works perfectly If I have any problem files, I will try the quotation marks.
Thanks again.
Similar Threads
-
converting vbr mp4 file to cbr mp4
By brandcc in forum Video ConversionReplies: 13Last Post: 19th Jun 2017, 09:43 -
how can i join two videos a1.mp4 + a2.mp4 = a12.mp4
By sommers in forum Newbie / General discussionsReplies: 14Last Post: 8th Jun 2017, 19:01 -
I recently split a mp4 with mp4 splitter
By RBCC in forum EditingReplies: 1Last Post: 13th Mar 2017, 04:12 -
FFmpeg: How do I split a 100GB MP4 file into several 1GB files?
By zopiro in forum EditingReplies: 9Last Post: 7th Jan 2016, 13:55 -
5.6gb mp4 file. Will i have to split it to watch on xbox?
By Cornholio77 in forum Video ConversionReplies: 27Last Post: 11th Apr 2014, 15:09