• Stars
    star
    160
  • Rank 233,657 (Top 5 %)
  • Language
    C++
  • License
    GNU General Publi...
  • Created almost 13 years ago
  • Updated almost 9 years ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

Creating and working with Matroska files
MKVToolNix 5.1.0
================

Table of contents
-----------------

1. Introduction
2. Installation
2.1. Requirements
2.2. Optional components
2.3. Building libmatroska and libebml
2.4. Building MKVtoolNix
2.5. Notes for compilation on (Open)Solaris
3. Examples
4. Reporting bugs



1. Introduction
---------------

With these tools one can get information about (mkvinfo) Matroska
files, extract tracks/data from (mkvextract) Matroska files and create
(mkvmerge) Matroska files from other media files. Matroska is a new
multimedia file format aiming to become THE new container format for
the future. You can find more information about it and its underlying
technology, the Extensible Binary Meta Language (EBML), at

http://www.matroska.org/

The full documentation for each command is now maintained in its
man page only. Type 'mkvmerge -h' to get you started.

This code comes under the GPL (see www.gnu.org or the file COPYING).
Modify as needed.

The newest version can always be found at
http://www.bunkus.org/videotools/mkvtoolnix/

Moritz Bunkus <[email protected]>



2. Installation
---------------

If you want to compile the tools yourself then you must first decide
if you want to use a 'proper' release version or the current
development version. As both Matroska and MKVToolNix are under heavy
development there might be features available in the Subversion
repository that are not available in the releases. On the other hand
the Subversion repository version might not even compile.

2.1. Requirements

In order to compile MKVToolNix you need a couple of libraries. Most of
them should be available pre-compiled for your distribution. The
programs and libraries you absolutely need are:

- A C++ compiler that supports several features of the C++11 standard:
  initializer lists, range-based 'for' loops, right angle brackets,
  the 'auto' keyword and lambda functions. For GCC this means at least
  v4.6.0.

- libebml and libmatroska for low-level access to Matroska files.
  Instructions on how to compile them are a bit further down in this
  file.

- expat ( http://expat.sourceforge.net/ ) -- a light-weight XML
  parser library

- libOgg ( http://downloads.xiph.org/releases/ogg/ ) and libVorbis
  ( http://downloads.xiph.org/releases/vorbis/ ) for access to Ogg/OGM
  files and Vorbis support

- zlib ( http://www.zlib.net/ ) -- a compression library

- Boost ( http://www.boost.org/ ) -- Several of Boost's libraries are
  used: "format", "RegEx", "filesystem", "system", "foreach",
  "Range". At least v1.46.0 is required.

You also need the "rake" or "drake" build program or at least the
programming language Ruby and the "rubygems" package. MKVToolNix comes
bundled with its own copy of "drake" in case you cannot install it
yourself. If you want to install it yourself I suggest you use the
"drake" version because it will be able to use all available CPU cores
for parallel builds.

Installing "drake" is simple. As root run the following command:

gem install drake

2.2. Optional components

Other libraries are optional and only limit the features that are
built. These include:

- wxWidgets ( http://www.wxwidgets.org/ ) -- a cross-platform GUI
  toolkit. You need this if you want to use mmg (the mkvmerge GUI) or
  mkvinfo's GUI.

- libFLAC ( http://downloads.xiph.org/releases/flac/ ) for FLAC
  support (Free Lossless Audio Codec)

- lzo ( http://www.oberhumer.com/opensource/lzo/ ) and bzip2 (
  http://www.bzip.org/ ) are compression libraries. These are the
  least important libraries as almost no application supports Matroska
  content that is compressed with either of these libs. The
  aforementioned zlib is what every program supports.

- libMagic from the "file" package ( http://www.darwinsys.com/file/ )
  for automatic content type detection

- libcurl ( http://curl.haxx.se/ ) for online update checks

2.3. Building libmatroska and libebml

This is optional as MKVToolNix comes with its own set of the
libraries. It will use them if no version is found on the system.

Start with the two libraries. Either get libebml 1.2.2 from
http://dl.matroska.org/downloads/libebml/ and libmatroska 1.3.0 from
http://dl.matroska.org/downloads/libmatroska/ or a fresh copy from the
Subversion repository:

svn co https://svn.matroska.org/svn/matroska/trunk/libebml
svn co https://svn.matroska.org/svn/matroska/trunk/libmatroska

Change to "libebml/make/linux" and run "make staticlib". If you have
root-access then run "make install_headers install_staticlib" as
"root" in order to install the files. Change to
"libmatroska/make/linux". Once more run "make staticlib". If you have
root-access then run "make install_headers install_staticlib" as
"root" in order to install the files.

Note that if you don't want the libraries to be installed in
/usr/local/lib and the headers in /usr/local/include then you can
alter the prefix (which defaults to /usr/local) by adding an argument
"prefix=/usr" to the install "make" command. Example:

make prefix=/usr install_headers install_staticlib

2.4. Building MKVtoolNix

Either download the current release from
http://www.bunkus.org/videotools/mkvtoolnix/ and unpack it or get a
development snapshot from my Git repository.

 - Getting and building a development snapshot (ignore this subsection
   if you want to build from a release tarball)

   All you need for Git repository access is to download a Git client
   from the Git homepage at http://git-scm.com/ . There are clients
   for both Unix/Linux and Windows.

   First clone my Git repository with this command:

   git clone git://github.com/mbunkus/mkvtoolnix.git

   Now change to the MKVtoolNix directory with "cd mkvtoolnix" and run
   "./autogen.sh" which will generate the "configure" script. You need
   the GNU "autoconf" utility for this step.

If you have run "make install" for both libraries then "configure"
should automatically find the libraries' position. Otherwise you need
to tell "configure" where the "libebml" and "libmatroska" include and
library files are:

./configure \
  --with-extra-includes=/where/i/put/libebml\;/where/i/put/libmatroska \
  --with-extra-libs=/where/i/put/libebml/make/linux\;/where/i/put/libmatroska/make/linux

Now run "rake" and, as "root", "rake install". If you don't have
"rake" installed yourself then use the version bundled with
MKVToolNix: "./rake.d/bin/drake" and "./rake.d/bin/drake install".

If you want to use all available CPU cores for building then you have
to use "drake" instead of "rake". "drake" knows the parameter "-j"
much like "make" does. You can also set the environment varibale
DRAKETHREADS to a number and the build process will automatically use
that number of threads for a parallel build:

./drake -j4

or

export DRAKETHREADS=4
./drake

2.5. Notes for compilation on (Open)Solaris

You can compile mkvtoolnix with Sun's sunstudio compiler, but you need
additional options for "configure":

./configure --prefix=/usr \
   CXX="/opt/sunstudio12.1/bin/CC -library=stlport4" \
   CXXFLAGS="-D_POSIX_PTHREAD_SEMANTICS" \
  --with-extra-includes=/where/i/put/libebml\;/where/i/put/libmatroska \
  --with-extra-libs=/where/i/put/libebml/make/linux\;/where/i/put/libmatroska/make/linux




3. Examples
-----------

Here's a *very* brief example of how you could use mkvmerge
with mencoder in order to rip a DVD:

a) Extract the audio to PCM audio:

mplayer -ao pcm:file=audio.wav -vo null -vc dummy dvd://1

b) Normalize the sound (optional)

normalize audio.wav

c) Encode the audio to Vorbis:

oggenc -q3 -oaudio-q3.ogg audio.wav

d) Somehow calculate the bitrate for your video. Use something like...

video_size = (target_size - audio-size) / 1.005
video_bitrate = video_size / length / 1024 * 8

target_size, audio_size in bytes
length in seconds
1.005 is the overhead caused by putting the streams into an Matroska file
  (about 0.5%, that's correct ;)).
video_bitrate will be in kbit/s

e) Use the two-pass encoding for the video:

mencoder -oac copy -ovc lavc \
  -lavcopts vcodec=mpeg4:vbitrate=1000:vhq:vqmin=2:vpass=1 \
  -vf scale=....,crop=..... \
  -o /dev/null dvd://1

mencoder -oac copy -ovc lavc \
  -lavcopts vcodec=mpeg4:vbitrate=1000:vhq:vqmin=2:vpass=2 \
  -vf scale=....,crop=..... \
  -o movie.avi dvd://1

f) Merge:

mkvmerge -o movie.mkv -A movie.avi audio-q3.ogg

-A is necessary in order to avoid copying the raw PCM (or MP3) audio as well.



4. Reporting bugs
-----------------

If you're sure you've found a bug - e.g. if one of my programs crashes
with an obscur error message, or if the resulting file is missing part
of the original data, then by all means submit a bug report.

I use Bugzilla (https://www.bunkus.org/bugzilla/) as my bug
database. You can submit your bug reports there. Please be as verbose
as possible - e.g. include the command line, if you use Windows or
Linux etc.pp. If at all possible please include sample files as well
so that I can reproduce the issue. If they are larger than 1M then
please upload them somewhere and post a link in the Bugzilla bug
report.

More Repositories

1

simpleDLNA

A simple, zero-config DLNA media server, that you can just fire up and be done with it.
C#
494
star
2

mod_xsendfile

Apache2 module that processes X-SENDFILE headers to serve static files from dynamic handlers efficiently
C
186
star
3

mintrayr

Mozilla extension: Minimize windows into the system tray (Firefox, Thunderbird, Seamonkey, Instantbird)
JavaScript
84
star
4

about-addons-memory

Tiny prototype Firefox extension presenting the memory usage of all active add-ons
JavaScript
75
star
5

fastpreview

A PicaView replacement.
C
32
star
6

unrarit

Ever wanted to extract a range of archive files? UnRarIt.Net comes to help.
C#
27
star
7

repagination

Rewrite of the old re-pagination/antipagination extension for Firefox
JavaScript
25
star
8

getoptnet

Advanced GetOpt (command line parser) implementation for .Net in C#
C#
23
star
9

xpisign.py

XP-Install (xpi) code signing.
Python
22
star
10

stopgap

Windows/NTFS free space defragmentation.
C++
11
star
11

extsdk

Lightweight Extension SDK
JavaScript
9
star
12

tabtools

Simple WebExtension adding some tools to manage tabs in Firefox
JavaScript
8
star
13

PlaneDB

Kinda like LevelDB, but in C#
C#
7
star
14

FastPrevNext

Firefox extension: Easily browse through sequenced URLs
JavaScript
7
star
15

sqlitepp

sqlitepp is a thin C++ wrapper around SQLite.
C
6
star
16

downthemall-asyncwrite

Windows extension to DownThemAll! to enable more efficient disc write in a background thread
C
6
star
17

mingw-w64-make

mingw-w64 Toolchain Makefile
5
star
18

crypto

Various cryptographic stuff (constant time compare, hashes, hmac, kdf)
C++
4
star
19

TracDuplicates

TracDuplicates is a plugin for trac that will allow to dupe a bug against another generating "Marked" comments like bugzilla does in both affected bugs.
C#
4
star
20

TracAuthOpenId

Fork of authopenid-plugin; Support prettier account names, and better cooexistence with other login modules
Python
3
star
21

deb-mingw32-runtime

Updated mingw32-runtime incl. better msvcrt > 0700 support
3
star
22

natcmp

Yet another natural string comparision implementation in a single C++ header
C
2
star
23

accreator

AntiContainer Creator
JavaScript
2
star
24

purgecaches

Purges/disables mozilla-2.x application fastload caches
JavaScript
2
star
25

stumble-enhance

Stumble-Upon enhancement extension for Firefox
JavaScript
2
star
26

TracAccountManager

TracAccountManager fork, DownThemAll! style
Python
2
star
27

gh-nightly-old

Put nighty builds on gh
Python
2
star
28

deb-gcc-mingw32

Updated gcc incl. cxx preprossor rules fix
2
star
29

SmallPix

Delete small pix on the fly
C#
2
star
30

WebSocketServer.jsm

A WebSocket Server in a Javascript Code Module
JavaScript
2
star
31

gosocksv5d

A SOCKS v5 (RFC 1928) server implementation in Go
Go
2
star
32

TracSpamFilterDTA

DownThemAll! specific stuff for the trac spam filter
Python
2
star
33

moztoolkitversion

Parser and Comparator for mozilla toolkit version in Python
Python
2
star
34

mod_fcgid

mod_fcgid clone test thingie
1
star
35

ffthumb

ffthumb - Yet another ffmpeg thumbnail library
C
1
star
36

so-hostname

Hostnames and stuff
JavaScript
1
star
37

gh-nightly

Produce XPI Nightlies hosted on Github
Python
1
star
38

compatible-icons

JavaScript
1
star
39

FastAddons

CustomizableUI experiment - Lets you enable and disable add-ons from a Australis toolbar button.
JavaScript
1
star
40

NMaier.BlockStream

A bunch of C# Streams that allow transparent transformations, such as compression and encryption.
C#
1
star
41

NMaier.Serialization

A (somewhat more) efficient binary formatter
C#
1
star
42

massforget

MassForget Firefox extension
JavaScript
1
star