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 48 49 50 51 52 53 54 55 56 57
|
MLT FRAMEWORK README
--------------------
MLT is a LGPL multimedia framework designed for video editing.
This document provides a quick reference for the minimal configuration, build and
installation of MLT.
See the `docs/` directory for usage details.
See the [website](https://www.mltframework.org/docs/) for development details
and a [contributing](https://www.mltframework.org/docs/contributing/) guide.
Configuration
-------------
Configuration is triggered by running:
cmake .
More information on usage is found by viewing `CMakeLists.txt` and the [cmake man page](https://cmake.org/cmake/help/latest/manual/cmake.1.html).
Compilation
-----------
Once configured, it should be sufficient to run:
cmake --build .
to compile the system. Alternatively, you can run `cmake` with `-G Ninja` and use ninja to compile.
Testing
-------
To execute the mlt tools without installation, or to test a new version
on a system with an already installed mlt version, you should run:
. setenv
NB: This applies to your current shell only and it assumes a bash or
regular bourne shell is in use.
Installation
------------
The install is triggered by running:
cmake --install .
More Information
----------------
For more detailed information, please refer to https://mltframework.org/docs/install/.
|