Project File Details

Kdenlive’s .kdenlive project files use an XML format based on MLT’s format to describe the source media used in a project, as well as the use of that media in the timeline. For more details see MLT's XML documentation and MLT's DTD (document type definition).

For most media, such as video, audio, and images, Kdenlive stores only a reference in a project, not the media itself. Only some media gets stored directly inside Kdenlive’s project files, most notably Kdenlive title and color clips.

The advantages of using this file format are:

  • MLT is able to directly render Kdenlive project files. MLT simply ignores all the additional Kdenlive-specific project data and just sticks to its rendering information. The Kdenlive-specific data is the additional icing on top that makes working with projects much easier than editing at the (lower) rendering level.

  • Kdenlive can directly include and work with MLT rendering files, just the same way it works with other media. In fact, Kdenlive’s library clips are simply MLT rendering files, nothing more.

The project file holds all relevant information about

  • target video and audio properties (selected in the project profile)

  • references to all the source materials (and to their proxies)

  • position, duration and edits of the clips in the timeline, with applied effects and their respective parameters including keyframes, and everything to get the final result

Project files are associated with a working directory, in which Kdenlive will generate proxies and thumbnails, so that an overview of your media always shows up quickly.

Poznámka

If you move your project file, you should declare the directory change in the project properties.

The development of Kdenlive introduces changes to the .kdenlive document format from time to time. For example, the introduction of sequences (also known as nested timelines) in version 23.04 required new objects to be stored in the .kdenlive file. The document version changed from 1.04 to 1.1. You can find the document version in the .kdenlive file in the line containing this:

<property name="kdenlive:docproperties.version">1.1</property>

When Kdenlive opens a project file that was created with a lower (previous) version of Kdenlive, it upgrades the document version, and automatically creates a backup copy of the original project file. Kdenlive tells you that a backup was created and the project file was updated to the new document version. In the project folder you will find a file called myproject_backup.kdenlive (where myproject is the name of your project file). In case something does not work with the new version of Kdenlive, you can downgrade Kdenlive and open the backup of your project.

This is important because document versions are not necessarily backwards compatible. In other words: higher (newer) versions of the .kdenlive file format cannot be opened with lower (previous) versions of Kdenlive . For example, projects created with Kdenlive 23.04 or higher (newer) cannot be opened by a Kdenlive version lower than (prior to) 23.04 (e.g. 22.12.8) because the 23.04 release of Kdenlive introduced the document change from 1.04 to 1.1 for the nested timelines.

Varování

Projects created with 20.08 forward are not backwards compatible, that is, you won’t be able to open your .kdenlive project files with older versions.

Varování

Projects created with 23.04 forward are not backwards compatible, that is, you won’t be able to open your .kdenlive project files with older versions.

For the more technically inclined user a more detailed description of the file format and how the various objects are described is available in the github repository of Kdenlive.