Adding Meta Data to MP4 Video¶
Adding a useful information to your video files - such as title, authors, the date of production, and some description - can be quite helpful to both yourself and your customers. This additional data - or meta data - can be used by media players to organize your many video files.
Metadatos del proyecto¶
Kdenlive allows you to specify the meta information that should be added to a rendered file. Just go to Metadata.
, then select the second tab namedDouble-click any existing meta data entry to change it.
Click on to add a new meta data entry (see the list of possible and permissable tags below).
For your convenience, Kdenlive automatically adds the following four elements to each new project:
Title
Author - does not work for .mp4 containers, but for .mov containers; you may use artist instead with .mp4 containers.
Copyright
Year - please note that this element does not work for video rendered into MP4 containers (such as .mov and .mp4). See below for more details. Use a date element instead. This year element is actually quite pesky: you can delete it, but it will automatically reappear. So simply ignore it … as ffmpeg does too.
But there are more elements that you actually may use with your MP4 containers.
Contenedores MP4¶
Unfortunately, there are competing sets of meta data when working with MP4 containers. The older, standard MP4 set is rather limited in what additional meta data can be used. Then, there is Apple iTunes, and that brings in a lot of meta data, and even changes the allowed set from time to time. We will come back to this difference in a second.
Nota
Other container formats, such as Matroska (.mkv
) or Audio Video Interleave (.avi
), support yet other sets of meta data elements.
Ffmpeg Supported MP4 Container Meta Information¶
But now for the real meat: here come the available meta data elements that ffmpeg supports.
Nota
You must use the ffmpeg meta data keys from the second column in the table below as the metadata keys in Kdenlive’s Project Metadata dialog.
Nota
ffmpeg supports different meta data elements, based on the type of container. And this container type normally gets derived from the container filename suffix: in particular, .mp4
and .mov
.
Elemento |
ffmpeg Meta Data Key |
Description (data type[1]) |
MOV |
MP4 |
Etiqueta |
---|---|---|---|---|---|
Título |
título |
The title of this video. (String) |
✔ |
✔ |
©nam |
Año |
fecha |
The date of production. Please note that the ffmpeg documentation is totally wrong here, there is no key named year, but only date. (String) |
✔ |
✔ |
©day |
Copyright |
copyright |
The copyright of your video. (String) |
✔ |
✔ |
©cpy |
Artista |
artista |
The name of the (video) artist. Please do not use this element for the composer, as there is a dedicated element especially for the composer, see below. (String) |
✔ |
✔ |
©ART |
Artista del álbum |
album_artist |
The name of the album artist: this may be a guest artist or a featured artist. This element can also be left out or be the same name as the artist. (String) |
✔ |
aART |
|
Autor |
autor |
The author of the video. (String) |
✔ |
©aut |
|
Compositor |
compositor |
The name of the composer. (String) |
©wrt |
||
Álbum |
álbum |
The title or the name of this album. (String) |
✔ |
©alb |
|
Descripción |
comentario |
A (content) description of this video. For a synopsis, please see the separate element instead. (String) |
✔ |
desc |
|
Comentario |
comentario |
A (short) comment on your video. This will probably a comment set by the audience, not at the time of production. (String) |
✔ |
©des |
|
Comentario |
comentario |
Same as before, but encoded in a separate element. (String) |
✔ |
✔ |
©cmt |
Sinopsis |
sinopsis |
A synopsis, a longer description of this video. (String) |
✔ |
ldes |
|
Género |
género |
The genre this video belongs to. (String) |
✔ |
✔ |
©gen |
Make |
make |
(String) |
✔ |
©mak |
|
Modelo |
modelo |
(String) |
✔ |
©mod |
|
Ubicación |
ubicación |
(String) |
✔ |
©xyz |
|
Agrupación |
agrupación |
The name of a group of videos somehow belonging together. In contrast to the album element, grouping happens inside (that is, below) the album level. (String) |
✔ |
©grp |
|
Show |
show |
The name of the TV show, if applicable. (String) |
✔ |
tvsh |
|
Episodio |
episode_id |
Either the episode name or episode number, for display. If necessary, use the separate, yet optional episode number element for correct sorting. (String) |
✔ |
tven |
|
Episode (Sorting) |
episode_sort |
This element is for sorting only, but never displayed. It allows numerical sorting of episode names that are strings, but not (necessarily) numbers. The valid range is limited to 0 to 255 only, so this doesn’t support all those endless telenovas, it seems… (Int8) |
✔ |
tves |
|
Temporada |
season_number |
The season number, in the range of 0 to 255 only. (Int8) |
✔ |
tvsn |
|
Letra |
letra |
Optional lyrics for badly sung sing-along… (String) |
✔ |
©lyr |
|
Compilación |
compilación |
If 1, then this video file is part of a compilation. 0 otherwise. (Int8) |
✔ |
cpil |
|
Red |
red |
(String) |
✔ |
tvnn |
|
Media Type |
media_type |
(Int8) |
✔ |
stik |
|
Vídeo HD |
hd_video |
(Int8) |
✔ |
hdvd |
|
Gapless Playback |
gapless_playback |
(Int8) |
✔ |
pgap |
|
Herramienta de codificación |
codificador |
Not available to us users, as it gets automatically set by ffmpeg itself; this is set to the libavformat version string. |
✔ |
©swr |
|
Herramienta de codificación |
encoding_tool |
Not available to us users, as it gets automatically set by ffmpeg itself; this is set to the libavformat version string. |
✔ |
©too |
Notas
There is no way to add cover art or DVD art to MP4 containers through ffmpeg, and in consequence, in Kdenlive. Instead, you need to resort to other video container tagging tools, such as AtomicParsley.
Kdenlive leverages ffmpeg for encoding, so if ffmpeg does not support certain atoms there is no way for Kdenlive to get it into the rendered output file.
- Further Reading
The following references give some more background information on ffmpeg and meta data in .mov/.mp4 containers.
First, and foremost, the ffmpeg source code for reference, and moveenc.c in particular.
mov_write_ilst_tag()
is responsible to write the iTunes-compatible tags for .mp4 containersmov_write_udta_tag()
write the MPEG-standard tags instead, when using a .mov container
How To: Create/Write ID3 tags using ffmpeg by Jon Hall. This article finally got the author on the right track. However, beware of a few incorrect ffmpeg keys in Jon’s table (such as the TIT3 key, which the author thinks is not correct); these may be due to later changes in ffmpeg (or whatever). In the end, since some of Jon’s keys didn’t work, the author went for the ffmpeg source code which is the authoritative source, of course. Nevertheless, the author is very thankful to Jon who is some of the rare really good sources with good insight into the topic. Most other sources just tell you how to press some buttons on some application, but do not give you any clue as to what is actually going on behind the scenes.
How To: Dump and Load metadata with ffmpeg by Jon Hall. Sheds more light on how to work with meta data when it comes to ffmpeg.
FFmpeg Metadata article from the MultimediaWiki.
- Sources
The original text was submitted by user TheDiveO to the now defunct kdenlive.org blog. For this documentation it has been lifted from kdenlive.org, updated and adapted to match the overall style.