Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
M
mpd
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Иван Мажукин
mpd
Commits
4ecd4761
Commit
4ecd4761
authored
Oct 24, 2019
by
smutbert
Committed by
Max Kellermann
Oct 25, 2019
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
add tag "Conductor"
parent
e1867a99
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
4 additions
and
1 deletion
+4
-1
NEWS
NEWS
+1
-1
protocol.rst
doc/protocol.rst
+1
-0
Names.c
src/tag/Names.c
+1
-0
Type.h
src/tag/Type.h
+1
-0
No files found.
NEWS
View file @
4ecd4761
...
...
@@ -6,7 +6,7 @@ ver 0.22 (not yet released)
- relax the ISO 8601 parser: allow omitting the time of day and the "Z"
suffix
* tags
- new tags "Grouping" (for ID3 "TIT1")
and "Work
"
- new tags "Grouping" (for ID3 "TIT1")
, "Work" and "Conductor
"
* input
- curl: support "charset" parameter in URI fragment
- ffmpeg: allow partial reads
...
...
doc/protocol.rst
View file @
4ecd4761
...
...
@@ -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.
* **composer**: the artist who composed 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,
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
...
...
src/tag/Names.c
View file @
4ecd4761
...
...
@@ -34,6 +34,7 @@ const char *const tag_item_names[TAG_NUM_OF_ITEM_TYPES] = {
[
TAG_ORIGINAL_DATE
]
=
"OriginalDate"
,
[
TAG_COMPOSER
]
=
"Composer"
,
[
TAG_PERFORMER
]
=
"Performer"
,
[
TAG_CONDUCTOR
]
=
"Conductor"
,
[
TAG_WORK
]
=
"Work"
,
[
TAG_GROUPING
]
=
"Grouping"
,
[
TAG_COMMENT
]
=
"Comment"
,
...
...
src/tag/Type.h
View file @
4ecd4761
...
...
@@ -49,6 +49,7 @@ enum TagType
TAG_ORIGINAL_DATE
,
TAG_COMPOSER
,
TAG_PERFORMER
,
TAG_CONDUCTOR
,
TAG_WORK
,
TAG_GROUPING
,
TAG_COMMENT
,
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment