-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathREADME
More file actions
47 lines (32 loc) · 1.01 KB
/
README
File metadata and controls
47 lines (32 loc) · 1.01 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
This software is a simple and efficient GUI for extracting tracks from Matroska (mkv) files.
It is written in C++, using the GTK framework.
For now, it uses the tools provided by the mkvextract command line tool.
DEPENDENCIES:
-------------
This software uses the mkvextract-cli tools to extract the mkv tracks.
You need to install it to use the GUI.
The following dependencies are required for the compilation:
- cmake
- boost
- gtkmm-2.4
On archlinux, the dependencies can be installed with:
$ pacman -S cmake boost boost-libs gtkmm
COMPILATION:
------------
After cloning, start by creating a directory for building :
$ mkdir build_dir
$ cd build_dir
$ cmake /path_to_source_folder
Finally, to compile, just run :
$ make
The executable can be found here : build_dir/mkvextract-gtk
INSTALL:
--------
To install run (as a superuser) :
$ make install
When installed, to launch the program, just run:
$ mkvextract-gtk
UNINSTALL:
----------
To unistall, (run as a superuser) :
$ make uninstall