• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

.github/workflows/H16-May-2021-11394

cmake/H16-May-2021-410360

demo/H03-May-2022-832711

docs/H03-May-2022-151149

presets/H16-May-2021-1,4161,159

profiles/H16-May-2021-912836

src/H03-May-2022-150,539106,203

.gitignoreH A D16-May-2021825 5857

.gitlab-ci.ymlH A D16-May-20214.4 KiB8374

AUTHORSH A D16-May-2021422 1110

COPYINGH A D16-May-202125.9 KiB503418

DockerfileH A D16-May-20212.2 KiB5745

DoxyfileH A D16-May-202159.2 KiB1,4651,050

GPLH A D16-May-202117.7 KiB340281

GPLv3H A D16-May-202134.3 KiB675553

MltConfig.cmake.inH A D16-May-2021402 139

NEWSH A D16-May-202171.6 KiB1,7721,483

README.mdH A D16-May-20211.3 KiB5832

mlt++.pc.inH A D16-May-2021151 86

mlt-framework.pc.inH A D16-May-2021133 86

setenvH A D16-May-2021466 1711

README.md

1MLT FRAMEWORK README
2--------------------
3
4MLT is a LGPL multimedia framework designed for video editing.
5
6This document provides a quick reference for the minimal configuration, build and
7installation of MLT.
8
9See the `docs/` directory for usage details.
10
11See the [website](https://www.mltframework.org/docs/) for development details
12and a [contributing](https://www.mltframework.org/docs/contributing/) guide.
13
14
15Configuration
16-------------
17
18Configuration is triggered by running:
19
20    cmake .
21
22More information on usage is found by viewing `CMakeLists.txt` and the [cmake man page](https://cmake.org/cmake/help/latest/manual/cmake.1.html).
23
24Compilation
25-----------
26
27Once configured, it should be sufficient to run:
28
29    cmake --build
30
31to compile the system. Alternatively, you can run `cmake` with `-G Ninja` and use ninja to compile.
32
33
34Testing
35-------
36
37To execute the mlt tools without installation, or to test a new version
38on a system with an already installed mlt version, you should run:
39
40    . setenv
41
42NB: This applies to your current shell only and it assumes a bash or
43regular bourne shell is in use.
44
45
46Installation
47------------
48
49The install is triggered by running:
50
51    cmake --install
52
53
54More Information
55----------------
56
57For more detailed information, please refer to https://mltframework.org/docs/install/.
58