Include Genre and Year Song was released in Output of MusicBrainz Picard Software

The release date is updated by default. There are actually two years that are available by default in the tags Picard writes:

  • date: This is the release date for the specific release your are tagging. It gets written to the release date tags, depending on file format.

  • originaldate: This is the the first release date for the entire release group. It gets written to the tags also. Support for this tag varies.

E.g. if you have a 2020 re-release of an album originally released in 1990, the originaldate will be 1990, the date 2020. If you prefer you can also use a script to set originaldate for the main date (because this is what players usually will show):

$set(date,$if2(%originaldate%,%date%))

There is a third date available for scripting, and that is %_recording_firstreleasedate%. This aims to provide the first release date of the specific recording. Again you can e.g. set this date if your prefer. E.g. the following script will set the date tag to %_recording_firstreleasedate%. If that is not set, it will use %originaldate%, if that is also empty it keeps the value from %date%.

$set(date,$if2(%_recording_firstreleasedate%,%originaldate%,%date%))
2 Likes