Šarūnas Nejus
Šarūnas Nejus
> if it's ever needed, just revert the commit above Could you clarify?
> album_is 853460 was discovered and used. Indeed, however, the issue is that it used this ID to only look as far as _Deezer_ - while I expected it to...
```sh $ beet list data_source:Deezer -f '$data_source $mb_albumid $mb_trackid' Deezer deezer 370280807 1985876917 deezer 382439727 2045351817 deezer 1206154 13144759 deezer 356922 3829297 Deezer 76719 603418 Deezer 182066982 1121052792 Deezer 233946292...
@asardaes I'm finding that the way this plugin is designed is causing issues in 1. https://github.com/beetbox/beets/pull/6052 where I'm struggling to rebase this work on `master` because this plugin is so...
@mikeroll that is indeed a lot of duplication. I think a better approach would be to define an attribute on `TrackInfo` / `AlbumInfo`: ```py @property def artist(self) -> str |...
@mikeroll forgot to mention that my PR has already been merged. Try to rebase on master try my suggestion above
> Seems like the issue was not catched earlier, since the typehints were not propagated correctly in the metadata_plugin.item_candidates function. I may be missing something, but it seems to me...
Forgot about this PR! My main concern is that `chroma` plugin is very different from the rest of metadata source plugins - and whether we gain any value from _forcing_...
> It may replace #5976 implementation over `mbzero`. I would think so, given that this requires no external dependencies and is simpler.
I tested these adjustments by reimporting all `musicbrainz` tracks/albums in my library ```sh $ beet -vv import -LI data_source:musicbrainz --plugins=musicbrainz,importreplace (and -s) ``` I found a couple of issues and...