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. Unfortunately, while adding such meta data to audio files is straightforward, adding useful meta data to video files is … a nightmare. But don’t despair, as we’ve compiled some useful information for you!

Project Meta Data

project-meta-data

Kdenlive allows you to specify the meta information that should be added to a rendered file. Just go to Project ‣ Project Settings, then select the second tab named Metadata.

For your convenience, Kdenlive automatically adds the following four elements to each new project:

  • title.

  • author – doesn’t 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. Oh, 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.

MP4 Containers

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.

Unfortunately, information about what meta data can be used in which situation is rather scarce, sometimes outdated, and sometimes plainly wrong. Of course, this may also apply to this Toolbox article, but I’ve taken much effort to cross-check things in real life. As Kdenlive uses ffmpeg for encoding, one would think that there’s plenty of information – unfortunately, it’s not, and the scarce information is sometimes plainly wrong. At some point, I’ve resorted to reading the source code in order to find out which so-called MP4 atoms actually are supported and through which element names (the magic happens inside mov_write_ilst_tag() in moveenc.c). Luckily, you don’t need to dive into the source anymore.

Finally, please note that other container formats, such as Matroska (.mkv) or cough Audio Video Interleave (.avi), support yet other sets of meta data elements. So, variance galore!

Ffmpeg Supported MP4 Container Meta Information

But now for the real meat: here come the available meta data elements that ffmpeg supports.

  1. Please note that 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!

  2. Ffmpeg supports different meta data elements, based on the type of container. And this container type normally gets derived from the container filename suffix (ending): in particular, .mp4 and .mov.

Element

ffmpeg Meta Data Key

Description

MOV

MP4 (iTunes)

Tag

Title

title

The title of this video. (String)

©nam

Year

date

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

Artist

artist

The name of the (video) artist. Please don’t use this element for the composer, as there is a dedicated element especially for the composer, see below. (String)

©ART

Album Artist

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

Author

author

The author of the video. (String)

©aut

Composer

composer

The name of the composer. (String)

©wrt

Album

album

The title or the name of this album. (String)

©alb

Description

comment

A (content) description of this video. For a synopsis, please see the separate element instead. (String)

desc

Comment

comment

A (short) comment on your video. This will probably a comment set by the audience, not at the time of production. (String)

©des

Comment

comment

Same as before, but encoded in a separate element. (String)

©cmt

Synopsis

synopsis

A synopsis, a longer description of this video. (String)

ldes

Genre

genre

The genre this video belongs to. (String)

©gen

Make

make

(String)

©mak

Model

model

(String)

©mod

Location

location

(String)

©xyz

Grouping

grouping

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

Episode

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

Season

season_number

The season number, in the range of 0 to 255 only. (Int8)

tvsn

Lyrics

lyrics

Optional lyrics for badly sung sing-along… (String)

©lyr

Compilation

compilation

If 1, then this video file is part of a compilation. 0 otherwise. (Int8)

cpil

Network

network

(String)

tvnn

Media Type

media_type

(Int8)

stik

HD Video

hd_video

(Int8)

hdvd

Gapless Playback

gapless_playback

(Int8)

pgap

Encoding Tool

encoder

Not available to us users, as it gets automatically set by ffmpeg itself; this is set to the libavformat version string.

©swr

Encoding Tool

encoding_tool

Not available to us users, as it gets automatically set by ffmpeg itself; this is set to the libavformat version string.

©too

Notes

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 doesn’t support certain atoms, there’s no way for Kdenlive to get it into the rendered output file.

Useful References

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

    • mov_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 me on the right track. However, beware of a few incorrect ffmpeg keys in Jon’s table (such as the TIT3 key, which I think isn’t correct); these may be due to later changes in ffmpeg (or whatever). In the end, since some of Jon’s keys didn’t work, I went for the ffmpeg source code which is the authoritative source, of course. Nevertheless, I’m very thankful to Jon and he is some of the rare really good sources with good insight into the topic. Most other source just tell you how to press some buttons on some application, but don’t 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.