Commit 4ecd4761 authored by smutbert's avatar smutbert Committed by Max Kellermann

add tag "Conductor"

parent e1867a99
...@@ -6,7 +6,7 @@ ver 0.22 (not yet released) ...@@ -6,7 +6,7 @@ ver 0.22 (not yet released)
- relax the ISO 8601 parser: allow omitting the time of day and the "Z" - relax the ISO 8601 parser: allow omitting the time of day and the "Z"
suffix suffix
* tags * tags
- new tags "Grouping" (for ID3 "TIT1") and "Work" - new tags "Grouping" (for ID3 "TIT1"), "Work" and "Conductor"
* input * input
- curl: support "charset" parameter in URI fragment - curl: support "charset" parameter in URI fragment
- ffmpeg: allow partial reads - ffmpeg: allow partial reads
......
...@@ -283,6 +283,7 @@ The following tags are supported by :program:`MPD`: ...@@ -283,6 +283,7 @@ The following tags are supported by :program:`MPD`:
* **date**: the song's release date. This is usually a 4-digit year. * **date**: the song's release date. This is usually a 4-digit year.
* **composer**: the artist who composed the song. * **composer**: the artist who composed the song.
* **performer**: the artist who performed the song. * **performer**: the artist who performed the song.
* **conductor**: the conductor who conducted the song.
* **work**: `"a work is a distinct intellectual or artistic creation, * **work**: `"a work is a distinct intellectual or artistic creation,
which can be expressed in the form of one or more audio recordings" <https://musicbrainz.org/doc/Work>`_ which can be expressed in the form of one or more audio recordings" <https://musicbrainz.org/doc/Work>`_
* **grouping**: "used if the sound belongs to a larger category of * **grouping**: "used if the sound belongs to a larger category of
......
...@@ -34,6 +34,7 @@ const char *const tag_item_names[TAG_NUM_OF_ITEM_TYPES] = { ...@@ -34,6 +34,7 @@ const char *const tag_item_names[TAG_NUM_OF_ITEM_TYPES] = {
[TAG_ORIGINAL_DATE] = "OriginalDate", [TAG_ORIGINAL_DATE] = "OriginalDate",
[TAG_COMPOSER] = "Composer", [TAG_COMPOSER] = "Composer",
[TAG_PERFORMER] = "Performer", [TAG_PERFORMER] = "Performer",
[TAG_CONDUCTOR] = "Conductor",
[TAG_WORK] = "Work", [TAG_WORK] = "Work",
[TAG_GROUPING] = "Grouping", [TAG_GROUPING] = "Grouping",
[TAG_COMMENT] = "Comment", [TAG_COMMENT] = "Comment",
......
...@@ -49,6 +49,7 @@ enum TagType ...@@ -49,6 +49,7 @@ enum TagType
TAG_ORIGINAL_DATE, TAG_ORIGINAL_DATE,
TAG_COMPOSER, TAG_COMPOSER,
TAG_PERFORMER, TAG_PERFORMER,
TAG_CONDUCTOR,
TAG_WORK, TAG_WORK,
TAG_GROUPING, TAG_GROUPING,
TAG_COMMENT, TAG_COMMENT,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment