Mkvnix Tool



  1. MKVToolNix is a software for Windows and Linux systems, combining a set of tools for creating and editing files in the MKV (Matroska) format.
  2. If you want to run one of the command-line tools, you can do so as well: by symlinking the AppImage to the tool's name. Here's an example using mkvpropedit to change a movie's title: chmod u+rx MKVToolNixGUI-56.1.0-x8664.AppImage ln -s MKVToolNixGUI-56.1.0-x8664.AppImage mkvpropedit./mkvpropedit my-movie.mkv -set title='This is super cool.

As we mentioned in another entry, MKVToolNix (also known as MKVMerge) is an important (although mostly unknown) set of tools to work with MKV movie files on your Mac. In fact, the app is quite advanced and its features are just as broad in scope, which can get first-time users, who are unfamiliar with it, somewhat confused.

Because of that, here we show you how to easily accomplish three really cool things with your movies using MKVToolNix.

Creating and working with Matroska files. Giovanni Scafora is maintaining packages for libEBML, libMatroska and MKVToolNix in Arch's extra repository. You can install MKVToolNix with the simple command pacman -S mkvtoolnix-cli mkvtoolnix-gui You can also view the package sites for libebml, libmatroska and MKVToolNix. CentOS and RedHat Enterprise Linux 8.x. The purpose of this HowTo is to join videofiles, when a movie was ripped and split into two or more files. (This happens usually with very long movies i.e. LOTR or more often back in the day when we had Video CD or DIVX CDs) The ultimate goal is to have the movie back in one file, so there is no trouble in the various Plex clients which do not support multi-part files. The tool used is.

Let’s take a look at them.

Mkvtoolnix Toolkit

Joining Videos

This is a really cool feature of MKVToolNix that allows you to take any two given videos and join them together. This is especially helpful for those times when you film several shots of something on, say your iPhone, and you just don’t want to have ten separate videos after you export them.

To do this, once you have the different parts of your video on your Mac, add the first one to MKVToolNix and then simply click on the append button to add the next in the series and so on.

Once you have added all your video parts, just hit the Start muxing button and MKVToolNix will join them together.

MkvnixImportant Note: For MKVToolNix to join the videos successfully, all of them have to share the same video codec. If you shot all the segments with the same device, you shouldn’t worry about this.

Removing Audio from Video

Have you ever downloaded a video that was too large for its length? Well, sometimes this is because those videos include more than one audio track, be it audio in different languages or audio commentaries from the creators and such.

With MKVToolNix, you can actually remove specific audio tracks from any video, which in turn will reduce its footprint to a more reasonable size.

To do this, start by adding the video file to MKVToolNix. Once you do, all the different tracks of the file will be displayed on the app.

Mkvnixtool

There, uncheck the ones that you want to remove and click Start muxing.

Cool Tip: Alternatively, you can also add a completely different audio file to your video while at the same time removing another one. Or if you want, you could simply remove the video track entirely and keep just the audio track.

Once done, you will see that your new video file is considerably smaller than the original one thanks to this simple optimization.

Adding Subtitles To a Movie

Most of us have large collections of movies. The problem with these though, is that most of the times, those movies come with separate subtitle files, which can be somewhat easy to manage if you are very organized. If you are not though, then you risk ending up with countless subtitle files, many of them not even named properly, making it complicated to find the right one to open with your movie.

Thankfully, with MKVToolNix, you can embed any subtitle file (or many of them) to a single movie file.

To do this, first add the movie file to MKVToolNix. Then add the subtitle file as well. You will see the format and other important information of the subtitle file on the bottom window of the app.

After that, on the General track options tab, you can add a name to the subtitles and even select their language, which is ideal when you will add more than one subtitle file.

Following that, on the Format specific options tab you will be able to select the format of the subtitles, which most of the time will be ISO-8859-2. Select that and click on the Start muxing button.

The end result will be a movie perfectly synced to its newly embedded subtitles.

There you go. The best part of all? That’s just a small sample of what MKVToolNix is capable of. So if you feel confident, play with it a bit and find out what else it can do.


The above article may contain affiliate links which help support Guiding Tech. However, it does not affect our editorial integrity. The content remains unbiased and authentic.

Mkvnix Tool

Mkvnixtool

Read Next

Microsoft Edge vs Google Chrome: Which Safari Alternative Is Better on Mac

Are you getting confused between

MKVToolNix is a tool to merge mp4 videos to mkv format, edit video tracks like subtitle and different audio dubbed. You can download this program at mkvtoolnix.download. But this tool can be used to extract all tracks from the video and one of that are the Audio files. See steps below:

To Extract Audio files from MKV.

  1. Open Command Prompt CMD
  2. Now go to MKVToolNix installation directories
    cd C:
    cd 'Program filesMKVToolNix'
  3. Then, We have to identify which Track ID number is the mp3 audio located. (Optional) you can open the mkvtoolnix gui to see the Track ID of the audio.
    mkvmerge --identify-verbose 'C:DownloadsYOUR_AUDIO_FILE.mkv'
    On the output Check the track with audio (MP3), on our example its Track ID 1
  4. Then we can now extract the mp3 from our mkv files, type the following codes.
    mkvextract tracks 'C:DownloadsYOUR_AUDIO_FILE.mkv' 1:'YOUR_OUTPUT_DIRECTORIES.mp3'
  5. Done!