V
V
Veritas232019-05-24 21:39:40
Video processing
Veritas23, 2019-05-24 21:39:40

What program can be used to quickly split a video into two parts?

What program can be used to quickly split a video into two parts? Through Movavi I tried, for a very long time. In half an hour only 2% processed.

Answer the question

In order to leave comments, you need to log in

1 answer(s)
S
Sergey Sokolov, 2019-05-24
@Veritas23

You can divide by time with ffmpeg 'om. To quickly, it is necessary without recoding. Something like

ffmpeg -i source.mp4 -t 1:30:00 -c copy part1.mp4
ffmpeg -ss 1:30:00 -i source.mp4 -c copy part2.mp4

This will split the video at the 1 hour and 30 minutes mark and make two files part1 and part2

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question