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
ca8451cd
Commit
ca8451cd
authored
Jun 11, 2019
by
Max Kellermann
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
tag/Type: add tag "Work"
Closes
https://github.com/MusicPlayerDaemon/MPD/issues/577
parent
28e07e90
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
5 additions
and
1 deletion
+5
-1
NEWS
NEWS
+1
-1
protocol.rst
doc/protocol.rst
+2
-0
Names.c
src/tag/Names.c
+1
-0
Type.h
src/tag/Type.h
+1
-0
No files found.
NEWS
View file @
ca8451cd
...
...
@@ -3,7 +3,7 @@ ver 0.22 (not yet released)
- "findadd"/"searchadd"/"searchaddpl" support the "sort" and
"window" parameters
* tags
- new tag
"Grouping" (for ID3 "TIT1")
- new tag
s "Grouping" (for ID3 "TIT1") and "Work"
* input
- ffmpeg: allow partial reads
* archive
...
...
doc/protocol.rst
View file @
ca8451cd
...
...
@@ -274,6 +274,8 @@ 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.
* **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
sounds/music" (`from the IDv2.4.0 TIT1 description
<http://id3.org/id3v2.4.0-frames>`_).
...
...
src/tag/Names.c
View file @
ca8451cd
...
...
@@ -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_WORK
]
=
"Work"
,
[
TAG_GROUPING
]
=
"Grouping"
,
[
TAG_COMMENT
]
=
"Comment"
,
[
TAG_DISC
]
=
"Disc"
,
...
...
src/tag/Type.h
View file @
ca8451cd
...
...
@@ -49,6 +49,7 @@ enum TagType
TAG_ORIGINAL_DATE
,
TAG_COMPOSER
,
TAG_PERFORMER
,
TAG_WORK
,
TAG_GROUPING
,
TAG_COMMENT
,
TAG_DISC
,
...
...
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