Multi-artist support for non-MusicBrainz-tagged content
Terminology
The following terminology is used throughout this spec:
- Join phrase
The token used to split a list of artists and represent their role in content
- Release
An album or single. In Funkwhale a release is represented by the
Album
model- Recording
A single track as part of an album or single. In Funkwhale, a recording is represented by the
Track
model
Proposed solution
To support multi-artist content, a new ArtistCredit
model should be added to house contributing artist information, including links to Artist
models and details about credited names and join phrases. The ArtistCredit
model should link to Album
and Track
entries using a ForeignKey
relationship to allow multiple artist_credit
entries on each Album
and Track
. The existing artist
field in Album
and Track
models is deprecated in favor of the new artist_credit
field.
To account for content tagged in tagged in systems other than MusicBrainz, a parse_credit
strategy should be used to parse artist credit from a file’s metadata using join phrase parsing.
Feature behavior
The workflow for ArtistCredit
population goes as follows:
Backend
The backend is responsible for
Tokenizing artist tags in the file’s metadata and creating
Artist
entries for new artistsCreating
ArtistCredit
entries for each unique combination ofartist_id
,credit
, andjoinphrase
Adding the
ArtistCredit
links toTrack
andAlbum
entries
The artist_credit
entries must be linked sequentially to preserve ordering. For each entry, Funkwhale should query for an existing ArtistCredit
entry and return it if found, or create a new one and return the new entry. This ensures that artist credit information is presented in the same order as in the tags.
Data model
A new ArtistCredit
model needs to hold the contributing artist information. This model contains the following fields:
The Funkwhale
artist_id
of the artist associated with the release or recordingThe
credit
representing the credited name of the artist as given for the release or recordingThe
joinphrase
associated with the artist (for example:" feat. "
," & "
)
Workflow
On the backend, the workflow for fetching ArtistCredit
information is as follows:
Funkwhale should provide the following to enable artist parsing in non-MusicBrainz-tagged content:
A sensible list of default join phrases that are commonly found in artist tags
A setting to enable admins to override or add to the list of join phrases
Funkwhale should tokenize the ALBUMARTIST
and ARTIST
fields using a list of join phrases. For each token in the list, Funkwhale should do the following:
Store content split at the join phrase token as the
credit
Search for any artist with the same name as the
credit
and store the id as theartist_id
If no existing artist is found, create a new artist and return the ID as
artist_id
Store the join phrase token that it split at as the
joinphrase
Create an
ArtistCredit
object for each unique combination ofartist_id
,credit
, andjoinphrase
If a matching
ArtistCredit
entry is found, Funkwhale should link to this
Funkwhale should do the following automatically:
Trim whitespace from the artist
credit
Preserve whitespace around both sides of the
joinphrase
for readabilityUse an empty string (
""
) as thejoinphrase
for the last entry in the list
For example, given a list of join phrases like this:
$
,|
,&
,/
,feat.
And the following tags:
Tag |
Values |
---|---|
ALBUMARTIST |
Tommy J. & Bobby Forth |
ARTIST |
Tommy J. feat. Robin Devil, Jerry Sabbath & Sammy Burns |
Funkwhale would create the following ArtistCredit
entries for the Album
:
id |
artist_id |
credit |
joinphrase |
---|---|---|---|
1 |
1 |
Tommy J. |
& |
2 |
2 |
Bobby Forth |
And the following for the Track
:
id |
artist_id |
credit |
joinphrase |
---|---|---|---|
3 |
1 |
Tommy J. |
” feat. “ |
4 |
3 |
Robin Devil |
“, “ |
5 |
4 |
Jerry Sabbath |
” & “ |
6 |
5 |
Sammy Burns |
“” |
API behavior
The Funkwhale API needs to return artist credit information in a way that is easily consumed by a client.
Endpoints should include a credited_artist
filter that allows a client to return results for which artists are credited. This filter should take a list of IDs.
To return any albums where the artist is listed in the artist_credit
field, you can filter by the artist_id
field using the credited_artist
filter:
https://open.audio/api/v2/albums?credited_artist=6451,6452
The credit
field of the artist_credit
object must also be searchable using a standard query:
https://tanukitunes.com/api/v2/albums?q=jonathan+coulton
Migration
To ensure all content has artist_credit
information, an initial migration should copy the current artist information into an ArtistCredit
object for each Album and Track with the following mapping:
artist_id
= Artistid
credit
= Artistname
joinphrase
=""
Each album/track must have at least one artist_credit
entry listed against it.
Frontend
To prevent issues with tagging, the user should be presented a summary of artist credits that are separated using the parse_credit
strategy.
Once the upload has been processed by the server, the user should be shown a summary of the uploaded content with artists listed against each recording and release. The user should then be able to amend these results and send a request to update the values. Upon receiving a new value, the server should perform the same deduplication it performs during a new upload.
The user uploads new content to Funkwhale
Funkwhale parses the artist credits and saves the new credit objects in case the upload is interrupted
Funkwhale displays a summary of the changes
If the results are correct, the user accepts the changes and finishes the upload
If the results are incorrect, the user modifies the artist credits and submits the changes
Representation in releases and tracks
The frontend should use the artist_credit
field to populate artist links on releases and tracks. Credited names and join phrases must be preserved to line up with the artists’ intent.
The frontend should format the results as follows for each artist:
<span>
<a href="{funkwhale_url}/library/artists/{artist_id}">{credit}</a>{joinphrase}
</span>
For example, given the following artist_credit
response:
[
{
"artist_id": 25,
"credit": "Jonathan Coulton",
"joinphrase": " & "
},
{
"artist_id": 395,
"credit": "John Roderick",
"joinphrase": ""
}
]
The frontend would render the following:
<span>
<a href="https://open.audio/library/artists/25">Jonathan Coulton</a> &
<a href="https://open.audio/library/artists/395">John Roderick</a>
</span>
“Also appears in” section
To keep artist discographies properly catalogued, only albums attributed to the artist, not albums with tracks featuring the artist, should appear in the “Albums by” section of the artist page.
Releases to which the artist has contributed should be separated into a new section labeled “Also appears in”. This ensures that it is easy to discover content to which an artist has contributed while also prioritizing their own content on the artist page.
“Compilations” page
The “Various Artists” artist is a special artist used in MusicBrainz to catalogue compilation content not attributed primarily to a specific artist or artists. This artist is widely used in Funkwhale as the Album Artist tag for compilation content. To preserve this content and make compilation content easier to find, we should create a special “Compilations” page to house compilation content.
Documentation
The following needs to be documented:
The artist splitting mechanism. Meaningful examples should be provided to help users tag their content
The environment setting to override the join phrase list
Any tasks or script functions which are created to automate the update of historical content
Availability
Admin panel
App frontend
CLI
Responsible parties
The backend developers in the Development group are responsible for:
Creating the new
ArtistCredit
modelUpdating the
Album
andTrack
models to link toArtistCredit
entriesCreating the strategies for populating
ArtistCredit
during the upload processUpdating the API/creating new endpoints
Creating the database migration to add the new field and that artist information is copied over
The frontend developers in the Development group are responsible for:
Updating the artist representations in the Album and Track pages to use the new
artist_credit
field in the API responseCreating the new “Also appears in” section for the artist discography pages
Creating a workflow to enable users to verify uploaded data and fix any broken artist credits
The Design group is responsible for:
Providing designs for how multi-artist content should be rendered responsively
Providing designs for the new “Compilations” page
Providing designs for the updated Artist page
The Documentation group is responsible for:
Documenting the new feature behavior
Documenting the new environment settings
Providing docstrings for API development
Open questions
What should be used as the default join words list?
To maintain compatibility with API v1, should we continue to populate the
artist
tag onTrack
andAlbum
entries with the first credited artist?
Minimum viable product
The MVP for this product is an implementation of the backend behavior. It should:
Set up the new models
Create the database migration
Implement the token splitting and data fetching for new files
Next steps
Create a
manage.py
script that enables admins to update entries in the databaseCreate a task that updates files imported in-place