feat(metadata): optional 'feat.' move from artist into title (#839)#864
Open
SnitchTeam wants to merge 1 commit into
Open
feat(metadata): optional 'feat.' move from artist into title (#839)#864SnitchTeam wants to merge 1 commit into
SnitchTeam wants to merge 1 commit into
Conversation
Adds opt-in setting 'moveFeaturedArtistsToTitle' (default off) that, for multi-artist tracks, keeps the lead artist in ARTIST/TPE1 and appends '(feat. ...)' to the title for both the file name and the embedded TITLE tag. Album artist is untouched. Closes spotbye#839
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Adds an opt-in setting Move featured artists from artist to title (default off).
When enabled, multi-artist tracks now keep only the lead artist in the
ARTIST/TPE1tag and the{artist}filename variable, and the remaining artists are appended to the song title as(feat. X & Y)(both for the file name and the embeddedTITLEtag).The transformation is skipped if the title already advertises a feature (
(feat.,(ft.,(featuring,[feat.,[ft.,[featuring, case-insensitive) and when there is only a single credited artist. The album artist (TPE2) is intentionally untouched.Existing users see no change because the setting defaults to off.
Tested by
go build ./...andgo vet ./backend/....Closes #839