-
-
Notifications
You must be signed in to change notification settings - Fork 98
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Standardized Album Artist Name(s) #105
Conversation
Plugin to add two new tags with standardized album artist name(s) for use when both standardized and credited names are required. StdAlbumArtist = Standardized name of first artist in the AlbumArtist. StdAlbumArtists = Standardized names of all artists in the AlbumArtist, separated by semi-colons.
A few comments:
|
I haven't been able to find any documentation with respect to writing plugins for Picard, so I've been going through the Picard source code to try to follow how the plugins are called and what information is passed. I'll admit that I'm still a bit fuzzy on some aspects. As to your questions:
I have a need for the standardized name of the first artist as part of my file naming script, but others may not. For that reason, I'm wondering if it would make more sense to do that in a separate plugin. In any event, I'm going to close this pull request and re-work the code a bit before resubmitting. Thanks for your comments. I appreciate the insight into the way Picard works with plugins. |
Will incorporate Sophist-UK's comments and resubmit. |
Bob:
|
+ Complete rewrite to utilize the album metadata processor rather than the track metadata processor + Eliminate all extra calls to the ws service by using the information already available in the album xml parameter. + Slight change to plugin name. + Added revision history in comments.
Thanks again for your help to point me in the right direction. |
* Remove unused import item. * Add static method identifier.
Completely rewritten. Will create a new pull request. |
Plugin to add two new tags with standardized album artist name(s) for
use when both standardized and credited names are required.
StdAlbumArtist = Standardized name of first artist in the AlbumArtist.
StdAlbumArtists = Standardized names of all artists in the AlbumArtist,
separated by semi-colons.