Split mkv file with mkvtoolnix command line
Asked Answered
B

1

13

I found mkvtoolnix command line, installed with brew. But i found nothing about splitting a movie with the command line, i only found with GUI.

The installation create 4 binary mkvextract mkvinfo mkvmerge mkvpropedit .

SOLUTION :

mkvmerge --split 3G -o "film.mkv" ./mymkvfile

Badly answered 24/5, 2016 at 13:46 Comment(0)
R
26

Either use the command line mkvmergewith --split (see https://mkvtoolnix.download/doc/mkvmerge.html) or use the GUI on the "Global" tab ("Splitting").

For example, to split the file movie.mkv into 1.5GB chunks:

mkvmerge --split 1500M -o movie-split.mkv movie.mkv

Note that fractional split sizes aren't supported, so --split 1.5G won't work.

Roquelaure answered 24/5, 2016 at 13:59 Comment(1)
Thanks you, i use the command mkvmerge --split 3G -o "film.mkv" ./mymkvfileBadly

© 2022 - 2024 — McMap. All rights reserved.