Skip to content

mltframework/mlt

master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Code

Latest commit

opencv.tracker's timing is different than other dual pass filters such as
vidstab and loudness, which are relative to the filter. Rather, it is
relative to the original producer. When using a chain in MLT XML as the
filter's producer, tracker's first pass analysis mode is broken and never
completes because the producer length is a maximal value. Instead of
trying to somehow fix that elsewhere (in a chain the duration of the
producer and attached filters are fluid by design and the original
producer duration is less relevant), this change introduces a timing
mode that works the same as the other filters when used with a chain.
8f42b52

Git stats

Files

Permalink
Failed to load latest commit information.
Type
Name
Latest commit message
Commit time
 
 
 
 
 
 
 
 
 
 
 
 
src
 
 
 
 
 
 
 
 
 
 
 
 
 
 
GPL
 
 
 
 
 
 
 
 
 
 
 
 

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 for development details and a contributing guide.

Configuration

Configuration is triggered by running:

cmake .

More information on usage is found by viewing CMakeLists.txt and the cmake man page.

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/.