i have video file to 2.3GB 116 minutes
how to split video into 3 equal parts?
or also split video into 3 parts by time: 40min + 40min + remaining time (36min)
now i use:
but i would like only one command to split the video. any tips?Code:ffmpeg -i input.mkv -ss 00:00:00.00 -to 00:40:00.00 -acodec copy -vcodec copy -y output_1.mkv ffmpeg -i input.mkv -ss 00:40:00.00 -to 01:20:00.00 -acodec copy -vcodec copy -y output_2.mkv ffmpeg -i input.mkv -ss 01:20:00.00 -to 01:56:00.00 -acodec copy -vcodec copy -y output_3.mkv
+ Reply to Thread
Results 1 to 11 of 11
-
-
This gives 1 character segment numbers:
Code:ffmpeg -i input.mkv -f segment -segment_time 2400 -c copy output%1d.mkv
-
very nice. many tanxs!
from another site i've found this add-on
Code:-threads 8
-
The number of threads won't make any difference when not re-encoding. The process is I/O bound, not CPU bound.
-
ok. and instead it can be useful in the case of only video encoding? (no audio, only video encoding)
-
-
thank you, but that's not my problem.
the thing is, sometimes it takes about 40 minutes for a code. if i don't want to wait for the end, i wanted to know if there was a way to stop and then resume.
this is because if i have to leave and then i hibernate the pc, if i have a coding in progress, even if on pause, the time for hibernation increases.
important is already able to pause the coding process!
Similar Threads
-
Need help writing an ffmpeg script to batch split many video files by size
By manav in forum Newbie / General discussionsReplies: 11Last Post: 6th Aug 2020, 17:37 -
ffmpeg version of mkvmerge --split parts-frames?
By Travillion in forum EditingReplies: 7Last Post: 1st Mar 2019, 03:12 -
Software for windows besides ffmpeg to split multiple videos?
By carlrandall72 in forum Newbie / General discussionsReplies: 1Last Post: 11th May 2018, 08:43 -
ffmpeg split audio channels
By Selur in forum Newbie / General discussionsReplies: 9Last Post: 27th Jan 2017, 17:14 -
How to split multiple parts with ffmpeg?
By ben45 in forum Video ConversionReplies: 4Last Post: 10th Oct 2016, 02:35