mirror of
https://github.com/beetbox/beets.git
synced 2025-12-06 16:42:42 +01:00
Added note on title and artist usage.
This commit is contained in:
parent
9a03789e5e
commit
33d1a353fc
1 changed files with 7 additions and 7 deletions
|
|
@ -156,6 +156,10 @@ class MetadataSourcePlugin(BeetsPlugin, metaclass=abc.ABCMeta):
|
||||||
:param artist: Album artist
|
:param artist: Album artist
|
||||||
:param album: Album name
|
:param album: Album name
|
||||||
:param va_likely: Whether the album is likely to be by various artists
|
:param va_likely: Whether the album is likely to be by various artists
|
||||||
|
|
||||||
|
Note that `artist` and `album` may contain additional user-supplied search terms
|
||||||
|
intended to refine the query. When relevant, prefer these values over
|
||||||
|
metadata extracted from item directly.
|
||||||
"""
|
"""
|
||||||
raise NotImplementedError
|
raise NotImplementedError
|
||||||
|
|
||||||
|
|
@ -170,13 +174,9 @@ class MetadataSourcePlugin(BeetsPlugin, metaclass=abc.ABCMeta):
|
||||||
|
|
||||||
Used in the autotag functionality to search for tracks.
|
Used in the autotag functionality to search for tracks.
|
||||||
|
|
||||||
:param item: Track item
|
Note that `artist` and `title` may contain additional user-supplied search terms
|
||||||
:param artist: Track artist, either a search manually provided or
|
intended to refine the query. When relevant, prefer these values over
|
||||||
preprocessed from the item. If no metadata is available an empty string
|
metadata extracted from item directly.
|
||||||
is passed.
|
|
||||||
:param title: Track title, either a search manually provided or
|
|
||||||
preprocessed from the item. If no metadata is available an empty string
|
|
||||||
is passed.
|
|
||||||
"""
|
"""
|
||||||
raise NotImplementedError
|
raise NotImplementedError
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue